Skip to content

Commit

Permalink
changed production port from 443 to 80 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
JinIgarashi authored Dec 23, 2024
1 parent 2b6787c commit c400dc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .azure/aci-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ properties:
image: undpgeohub.azurecr.io/undp-data/geo-cb-surge:main
ports:
- port: 22
- port: 443
- port: 80
resources:
requests:
cpu: 4
Expand All @@ -31,7 +31,7 @@ properties:
type: Public
ports:
- port: 22
- port: 443
- port: 80
dnsNameLabel: cbsurge-rapida
volumes:
- name: fileshare-volume
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fi

# Determine the port based on the PRODUCTION environment variable
if [ "$PRODUCTION" = "true" ]; then
JUPYTER_PORT=443
JUPYTER_PORT=80
else
JUPYTER_PORT=8000
fi
Expand Down

0 comments on commit c400dc9

Please sign in to comment.