31 lines
938 B
Plaintext
Executable File
31 lines
938 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 wordpress.copaines.jean-cloud.net www.wordpress.copaines.jean-cloud.net;
|
||
# location / {
|
||
# auth_basic "Mot de passe !";
|
||
# auth_basic_user_file /data/copaines.jean-cloud.net/pass.txt;
|
||
# client_max_body_size 2G;
|
||
# #proxy_set_header X-Real-IP $remote_addr;
|
||
# proxy_set_header Host $http_host;
|
||
# proxy_set_header X-Forwarded-Proto https;
|
||
# proxy_pass http://wp.copainesjean-cloudnet.docker;
|
||
# proxy_redirect off;
|
||
# }
|
||
#}
|
||
|
||
server {
|
||
listen 443 ssl http2;
|
||
listen [::]:443 ssl http2;
|
||
ssl_certificate $JC_CERT/fullchain.pem;
|
||
ssl_certificate_key $JC_CERT/privkey.pem;
|
||
server_name copaines.jean-cloud.net www.copaines.jean-cloud.net;
|
||
|
||
location / {
|
||
root /data/copaines.jean-cloud.net/static;
|
||
try_files $uri $uri/ =404;
|
||
}
|
||
}
|