Skip to content
Snippets Groups Projects
sso.c3heaven.de 510 B
Newer Older
  • Learn to ignore specific revisions
  • acmetool_cert_domains:
     - "sso.c3heaven.de"
    
    nginx_http_locations:
     - location: "/"
       config: |
         return 301 https://$host$request_uri;
    
    nginx_https_sites:
     - name: "sso.c3heaven.de"
       locations:
        - location: "/" 
          config: |
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $remote_addr;
    
    MichiK's avatar
    MichiK committed
            proxy_set_header X-Forwarded-Proto https;
    
            proxy_pass http://localhost:8080/;
       headers: null
    
    # vim: set ft=yaml: