initial commit

This commit is contained in:
2024-01-17 16:53:15 +01:00
commit 04b138497b
11 changed files with 238 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
server {
listen 0.0.0.0:443;
ssl on;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_certificate /etc/nginx/ssl/inception.crt;
ssl_certificate_key /etc/nginx/ssl/inception.key;
root /var/www/wordpress;
server_name vvaas.42.fr;
index index.php;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass wordpress:9000;
}
}