diff --git a/.azure/aci-deploy.yaml b/.azure/aci-deploy.yaml index 96440a6..a0de841 100644 --- a/.azure/aci-deploy.yaml +++ b/.azure/aci-deploy.yaml @@ -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 @@ -31,7 +31,7 @@ properties: type: Public ports: - port: 22 - - port: 443 + - port: 80 dnsNameLabel: cbsurge-rapida volumes: - name: fileshare-volume diff --git a/entrypoint.sh b/entrypoint.sh index c4c6359..8728b35 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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