13 lines
298 B
Plaintext
Executable File
13 lines
298 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 git.jean-cloud.net www.git.jean-cloud.net;
|
|
location / {
|
|
client_max_body_size 5G;
|
|
proxy_pass http://172.29.10.100:3000;
|
|
}
|
|
}
|
|
|