nohix conf

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

View File

@ -1,16 +0,0 @@
<VirtualHost *:80>
ServerName nohix.metanohi.name
ServerAlias www.nohix.metanohi.name
ServerAdmin ngws@metanohi.name
DocumentRoot /home/niels/prog/metanohi-misc-subsites/nohix
<Directory /home/niels/prog/metanohi-misc-subsites/nohix/>
Options Indexes Includes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
LogLevel warn
ErrorLog ${APACHE_LOG_DIR}/error-nohix.metanohi.name.log
CustomLog ${APACHE_LOG_DIR}/access-nohix.metanohi.name.log combined
</VirtualHost>

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;
}