Skip to content

Commit

Permalink
Updating default artifact port
Browse files Browse the repository at this point in the history
  • Loading branch information
slundqui committed Jul 28, 2023
1 parent 70108bd commit 0d60f7a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.nginx
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ RUN rm /etc/nginx/conf.d/default.conf
# Copy the custom NGINX configuration file
COPY nginx.conf /etc/nginx/conf.d/

EXPOSE 80
EXPOSE 8080
2 changes: 1 addition & 1 deletion docker-compose.ports.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:

artifacts:
ports:
- ${ARTIFACT_PORT}:80
- ${ARTIFACT_PORT}:8080

hyperdrive-monorepo:
ports:
Expand Down
2 changes: 1 addition & 1 deletion env/env.common
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Networking configuration
ARTIFACTS_URL=http://artifacts:80
ARTIFACTS_URL=http://artifacts:8080
RPC_URL=http://ethereum:8545
6 changes: 3 additions & 3 deletions env/env.frontend
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ UI_ALCHEMY_GOERLI_RPC_KEY=

# The endpoints used by the UI for "Foundry" chain
UI_LOCALHOST_NODE_RPC_URL=http://localhost:8545
UI_LOCALHOST_ADDRESSES_URL=http://localhost:80
UI_LOCALHOST_ADDRESSES_URL=http://localhost:8080

# The endpoints and chain id used by the UI for "Cloud Chain"
# These can't be the same as the "Foundry" chain or wallets will get confused
UI_CUSTOM_CHAIN_NODE_RPC_URL=http://3.13.94.236:8545
UI_CUSTOM_CHAIN_ADDRESSES_URL=http://3.13.94.236:80
UI_CUSTOM_CHAIN_ADDRESSES_URL=http://3.13.94.236:8080
UI_CUSTOM_CHAIN_CHAIN_ID=42069

# Optional wallet connect project ID to make Wallet Connect work
UI_WALLET_CONNECT_PROJECT_ID=
UI_WALLET_CONNECT_PROJECT_ID=
2 changes: 1 addition & 1 deletion env/env.ports
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The ports that should be opened if the --ports option is used.
ETH_PORT=8545
ARTIFACT_PORT=80
ARTIFACT_PORT=8080
UI_PORT=5173
USERNAME_REGISTER_PORT=5002
DB_PORT=5432
2 changes: 1 addition & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server {
listen 80;
listen 8080;
server_name localhost;

location / {
Expand Down

0 comments on commit 0d60f7a

Please sign in to comment.