Wordpress download / Vhost config

This commit is contained in:
David Petric
2023-03-27 18:24:16 +02:00
parent 2d6606c0a4
commit 009993e3a0
6 changed files with 69 additions and 5 deletions

View File

@ -0,0 +1,39 @@
map $sent_http_content_type $expires {
default off;
text/html epoch;
text/css max;
application/javascript max;
~image/ max;
}
server {
root /var/www/{{ vhost_name }};
index index.php index.html index.htm;
server_name {{ domain }};
listen 80;
expires $expires;
client_max_body_size 50M;
autoindex off;
location / {
try_files $uri $uri/ @handler;
}
location /admin {
try_files $uri $uri/ /admin/index.php?$args;
}
location @handler {
if (!-e $request_filename) { rewrite / /index.php last; }
rewrite ^(.*.php)/ $1 last;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php{{ php_version }}-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}