jean-cloud-services/services/git.jean-cloud.net/nginx_server.conf
Adrian Amaglio d75f851959 update
2024-02-22 01:43:01 +01:00

13 lines
279 B
Plaintext
Executable File

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
ssl_certificate $JC_CERT/fullchain.pem;
ssl_certificate_key $JC_CERT/privkey.pem;
server_name $JC_SERVICE www.$JC_SERVICE;
location / {
client_max_body_size 5G;
proxy_pass http://$NET.100:3000;
}
}