nohix conf

This commit is contained in:
2016-09-03 15:02:15 +02:00
parent 1e0a2793d0
commit 020cca6871
3 changed files with 32 additions and 16 deletions

13
nohix/nginx/base.conf Normal file
View File

@@ -0,0 +1,13 @@
server_name nohix.metanohi.name www.nohix.metanohi.name;
root /home/niels/prog/metanohi-misc-subsites/nohix;
index index.html index.php;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location / {
autoindex on;
}

19
nohix/nginx/site.conf Normal file
View File

@@ -0,0 +1,19 @@
server {
listen 80;
listen [::]:80;
include /etc/nginx/snippets/letsencrypt.conf;
include /etc/nginx/basics/niels/nohix.metanohi.name.conf;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
ssl_certificate /etc/letsencrypt/live/nohix.metanohi.name/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/nohix.metanohi.name/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/nohix.metanohi.name/fullchain.pem;
include /etc/nginx/snippets/ssl.conf;
include /etc/nginx/basics/niels/nohix.metanohi.name.conf;
}