13 lines
306 B
Plaintext
Executable File
13 lines
306 B
Plaintext
Executable File
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
ssl_certificate $http_certs_dir/inurbe.fr/fullchain.pem;
|
|
ssl_certificate_key $http_certs_dir/inurbe.fr/privkey.pem;
|
|
server_name $JC_SERVICE www.$JC_SERVICE;
|
|
|
|
location / {
|
|
root $HTTP_DIR/public;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|