Simplify old-projects nginx config.

This commit is contained in:
Niels G. W. Serup 2020-08-23 01:15:42 +02:00
parent a2f53e26c5
commit 2084eebe93
3 changed files with 11 additions and 32 deletions

View File

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

View File

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

View File

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