17 lines
557 B
Plaintext
17 lines
557 B
Plaintext
|
server {
|
||
|
listen 443 ssl http2;
|
||
|
listen [::]:443 ssl http2;
|
||
|
ssl_certificate /etc/letsencrypt/live/pybox.jean-cloud.net/fullchain.pem;
|
||
|
ssl_certificate_key /etc/letsencrypt/live/pybox.jean-cloud.net/privkey.pem;
|
||
|
server_name pybox.jean-cloud.net www.pybox.jean-cloud.net;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://app.pyboxjean-cloudnet.docker;
|
||
|
client_max_body_size 0;
|
||
|
proxy_connect_timeout 6000;
|
||
|
proxy_send_timeout 6000;
|
||
|
proxy_read_timeout 6000;
|
||
|
send_timeout 6000;
|
||
|
}
|
||
|
}
|