services: letsencrypt: dev version of blog
This commit is contained in:
parent
710bfe0f57
commit
ae01cec5c7
|
@ -35,6 +35,26 @@ server {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Debug version
|
||||||
|
server {
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
|
|
||||||
|
root /config/www/hugo-dev;
|
||||||
|
index index.html;
|
||||||
|
|
||||||
|
server_name dev.belanyi.fr;
|
||||||
|
|
||||||
|
# all ssl related config moved to ssl.conf
|
||||||
|
include /config/nginx/ssl.conf;
|
||||||
|
|
||||||
|
client_max_body_size 0;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ /index.html /index.php?$args =404;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# CV block
|
# CV block
|
||||||
server {
|
server {
|
||||||
listen 443 ssl;
|
listen 443 ssl;
|
||||||
|
|
Reference in a new issue