Skip to content
Snippets Groups Projects
Select Git revision
  • 0620acb44df181a7e08b411482645ed66384741d
  • master default
2 results

main.yml

Blame
  • git.shore.co.il.conf 899 B
    map $host $git { default gitlab; }
    
    server {
        listen      80;
        listen      [::]:80;
        server_name git.shore.co.il;
        include     snippets/robots-allow-all.conf;
        include     snippets/ads-txt.conf;
        include     snippets/security-txt.conf;
        include     snippets/www-acme-challenge.conf;
        include     snippets/redirect-https.conf;
    }
    
    server {
        listen      443 ssl http2;
        listen      [::]:443 ssl http2;
        server_name git.shore.co.il;
        include     snippets/robots-allow-all.conf;
        include     snippets/ads-txt.conf;
        include     snippets/security-txt.conf;
        include     snippets/ssl.conf;
    
        location / {
            proxy_pass              http://$git$request_uri;
            proxy_http_version      1.1;
            include                 snippets/proxy-headers.conf;
            proxy_set_header        X-Forwarded-Ssl on;
            client_max_body_size    512m;
        }
    }