Skip to content

Commit

Permalink
Merge pull request #3 from celestiaorg/jose/change-port
Browse files Browse the repository at this point in the history
fix: change default port to 8080
  • Loading branch information
tty47 authored Feb 23, 2023
2 parents e72816c + 2608e82 commit 19c031b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY --chown=${UID}:${GID} docker/entrypoint.sh /opt/entrypoint.sh
RUN rm -rf src/chains/mainnet/* &&\
rm -rf src/chains/testnet/*

EXPOSE 80
EXPOSE 80 8080

STOPSIGNAL SIGQUIT

Expand Down
1 change: 0 additions & 1 deletion docker/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ user www-data;
worker_processes auto;
pid /var/lib/nginx/nginx.pid;

#pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
Expand Down
4 changes: 2 additions & 2 deletions ping.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server {
listen 80;
listen [::]:80;
listen 8080;
listen [::]:8080;
server_name _;

#access_log /var/log/nginx/host.access.log main;
Expand Down

0 comments on commit 19c031b

Please sign in to comment.