Skip to content

Commit

Permalink
change port to 80
Browse files Browse the repository at this point in the history
  • Loading branch information
eloiferrer committed Sep 7, 2023
1 parent f924ea8 commit 1f116fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ RUN pip install -r requirements.txt --src /usr/local/src

COPY nginx.conf /etc/nginx
RUN chmod +x ./start.sh

EXPOSE 80
CMD ["./start.sh"]
4 changes: 2 additions & 2 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ http {
index index.html index.htm;

server {
listen 5000 default_server;
listen [::]:5000 default_server;
listen 80 default_server;
listen [::]:80 default_server;
server_name localhost;
root /var/www/html;

Expand Down

0 comments on commit 1f116fd

Please sign in to comment.