Update Dockerfile and nginx.conf

This commit updates the Dockerfile to expose port 17000 instead of 8000 and updates the nginx.conf file to listen on port 80 instead of 8080.
This commit is contained in:
Dede Fuji Abdul
2024-01-13 20:18:57 +07:00
parent 69235b374d
commit 3744fef2ca
2 changed files with 3 additions and 3 deletions

View File

@ -30,8 +30,8 @@ http {
#include /etc/nginx/conf.d/*.conf;
server {
listen 8080;
listen [::]:8080;
listen 80;
listen [::]:80;
server_name localhost;
#access_log /var/log/nginx/host.access.log main;