Skip to content

Commit

Permalink
feat(port): use 80
Browse files Browse the repository at this point in the history
  • Loading branch information
dargmuesli committed Aug 31, 2021
1 parent b37e1ab commit f804e45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ COPY ./nginx.conf /etc/nginx/nginx.conf

COPY --from=build /srv/app/dist/ ./

HEALTHCHECK --interval=10s CMD wget -O /dev/null http://localhost:8080/healthcheck || exit 1
HEALTHCHECK --interval=10s CMD wget -O /dev/null http://localhost/healthcheck || exit 1
2 changes: 1 addition & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ http {
real_ip_header X-Real-IP;

server {
listen 8080;
listen 80;
server_name localhost;

add_header Content-Security-Policy "
Expand Down

0 comments on commit f804e45

Please sign in to comment.