Skip to content

Commit

Permalink
chore: move both configuration and dockerfile to port 8080
Browse files Browse the repository at this point in the history
  • Loading branch information
levivannoort authored Dec 21, 2023
1 parent d3339ea commit 2f238d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion admin-ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ RUN chown -R nginx:nginx /var/run/nginx.pid \
USER nginx

# expose a specific port on the docker container
ENV PORT=80
ENV PORT=8080
EXPOSE ${PORT}

# start the server using the previously build application
Expand Down
2 changes: 1 addition & 1 deletion admin-ui/configuration/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
server_tokens off;

server {
listen 80;
listen 8080;
server_name localhost;
location / {
root /usr/share/nginx/html;
Expand Down

0 comments on commit 2f238d2

Please sign in to comment.