When using the Docker Installation, you are able to change the HTTP port for your instance.
**Do note, we currently do not support changing the end point over HTTPS. Please have a conversation with your CSM/CSA if this is something you are looking to achieve**
To change the HTTP port for your instance, edit the `docker-compose.yml` file and update the ports in the nginx section:
version: '3.7'
networks:
iriusrisk-frontend:
iriusrisk-backend:
services:
nginx:
image: continuumsecurity/iriusrisk-prod:nginx
ports:
- "XXXX:80"
- "443:443"
environment:
Choosing your port by replacing the "XXXX"'s.
Example using "Port 1080 → 80"
version: '3.7'
networks:
iriusrisk-frontend:
iriusrisk-backend:
services:
nginx:
image: continuumsecurity/iriusrisk-prod:nginx
ports:
- "1080:80"
- "443:443"
environment:
Then be sure to restart the docker instance:
docker-compose down && docker-compose up -d
This will cause a redirect from "Http://<your-instance>.iriusrisk.com:1080" → "Https://<your-instance>.iriusrisk.com/"
Comments
0 comments
Article is closed for comments.