17 lines
361 B
Plaintext
Executable File
17 lines
361 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;
|
|
|
|
location = /wp-login.php {
|
|
return 301 https://wordpress.feministesucl34.jean-cloud.net/wp-login.php;
|
|
}
|
|
|
|
location / {
|
|
root $HTTP_DIR;
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|