18 lines
399 B
Plaintext
18 lines
399 B
Plaintext
|
|
server {
|
|
listen 443 ssl;
|
|
server_name docker.triton2.fet.at;
|
|
include ssl.conf;
|
|
client_max_body_size 1000M;
|
|
include ldap.conf;
|
|
set $proxy_host rancher;
|
|
set $proxy_port 5000;
|
|
location / {
|
|
include proxy.conf;
|
|
include secure.conf;
|
|
proxy_buffering off;
|
|
proxy_pass http://$proxy_host:$proxy_port;
|
|
client_max_body_size 1000M;
|
|
}
|
|
|
|
} |