aboutsummaryrefslogtreecommitdiff
path: root/templates/disabled/nginx/code.conf.template
blob: 0abe042b7dc56095f0dcce2b9a29576264bece7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
server {
    server_name code.@@CRUPEST_DOMAIN@@;
    include common/https-listen;
    
    location / {
        include common/proxy-common;
        proxy_pass http://debian-dev:8080/;
    }

    client_max_body_size 5G;
}


server {
    server_name code.@@CRUPEST_DOMAIN@@;
    include common/http-listen;

    include common/https-redirect;
    include common/acme-challenge;
}