Skip to content

Commit c400dc9

Browse files
authored
changed production port from 443 to 80 (#106)
1 parent 2b6787c commit c400dc9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.azure/aci-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ properties:
1313
image: undpgeohub.azurecr.io/undp-data/geo-cb-surge:main
1414
ports:
1515
- port: 22
16-
- port: 443
16+
- port: 80
1717
resources:
1818
requests:
1919
cpu: 4
@@ -31,7 +31,7 @@ properties:
3131
type: Public
3232
ports:
3333
- port: 22
34-
- port: 443
34+
- port: 80
3535
dnsNameLabel: cbsurge-rapida
3636
volumes:
3737
- name: fileshare-volume

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fi
1515

1616
# Determine the port based on the PRODUCTION environment variable
1717
if [ "$PRODUCTION" = "true" ]; then
18-
JUPYTER_PORT=443
18+
JUPYTER_PORT=80
1919
else
2020
JUPYTER_PORT=8000
2121
fi

0 commit comments

Comments
 (0)