HTTPS Configuration For Docker Installations
$ mv example.key /OOBEYA-DIRECTORY/nginx/ssl.key
$ mv example.crt /OOBEYA-DIRECTORY/nginx/ssl.crt server {
listen 80;
listen [::]:80;
server_name ops.oobeya.io; # YOUR DOMAIN
access_log /var/log/nginx/access.log compression; server { # This new server will watch for traffic on 443
listen 443 ssl;
server_name ops.oobeya.io; # YOUR DOMAIN
ssl_certificate /etc/nginx/ssl.crt;
ssl_certificate_key /etc/nginx/ssl.key; oobeya-nginx:
image: "oobeya.azurecr.io/oobeya-nginx-gateway:latest"
restart: "always"
ports:
- "80:80"
# - "443:443"
container_name: "oobeya-nginx"
# volumes:
# - ./nginx/nginx.conf:/etc/nginx/nginx.conf
# - ./nginx/ssl.crt:/etc/nginx/ssl.crt
# - ./nginx/ssl.key:/etc/nginx/ssl.keyPreviousOobeya Version Upgrade For the docker-compose InstallationsNextOobeya Installation Tutorial (Helm)
Last updated