Skip to content
Snippets Groups Projects
site.conf 1018 B
Newer Older
  • Learn to ignore specific revisions
  • Guilhem CARRON's avatar
    Guilhem CARRON committed
            listen 443 ssl;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
            server_name         local;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
            ssl_certificate     /etc/nginx/cert.pem;
            ssl_certificate_key /etc/nginx/key.pem;
            ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
            ssl_ciphers         HIGH:!aNULL:!MD5;
    
                proxy_pass https://host.docker.internal:3000;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
            }
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
            location /api {  
                proxy_pass https://backend:1443/api;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
            }
            location /OAuth2Login {
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
                proxy_pass https://backend:1443/OAuth2Login;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
            }
            location /OAuth2Callback {
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
                proxy_pass https://backend:1443/OAuth2Callback;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
            }
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
            location /Logout {
    
    Hugo SUBTIL's avatar
    Hugo SUBTIL committed
                proxy_pass https://backend:1443/Logout;
    
    Guilhem CARRON's avatar
    Guilhem CARRON committed
            location /swagger {
                proxy_pass https://backend:1443/swagger;
            }
    
            location /imageNames {
                proxy_pass https://backend:1443/api/admin/imageNames;
            }
    
    Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
            location /assets {
                proxy_pass https://backend:1443/assets;