Simplify natur nginx config.

This commit is contained in:
Niels G. W. Serup 2020-08-23 01:10:19 +02:00
parent 1880c3f3ba
commit 57ab0b57b2
3 changed files with 9 additions and 30 deletions

9
natur/natur.nginx.conf Normal file
View File

@ -0,0 +1,9 @@
root /home/niels/www/metanohi-misc-subsites/natur;
index index.html index.php;
location ~* \.php$ {
fastcgi_pass unix:/run/phpfpm/main.sock;
include /etc/nginx/fastcgi.conf;
}
error_page 404 /index.php;

View File

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

View File

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