14 lines
360 B
Plaintext
Executable File
14 lines
360 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 / {
|
|
root $HTTP_DIR;
|
|
try_files $uri $uri/ =404;
|
|
add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
|
|
}
|
|
}
|