37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
|
server {
|
||
|
listen 80 default_server;
|
||
|
server_name {{ server_name }};
|
||
|
root {{ wordpress.dir }};
|
||
|
index index.php;
|
||
|
|
||
|
# Deny access to any files with a .php extension in the uploads directory
|
||
|
location ~* /(?:uploads|files)/.*\.php$ {
|
||
|
deny all;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.php?$args;
|
||
|
}
|
||
|
|
||
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
|
||
|
expires max;
|
||
|
log_not_found off;
|
||
|
}
|
||
|
|
||
|
location ~ \.php$ {
|
||
|
try_files $uri =404;
|
||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||
|
fastcgi_index index.php;
|
||
|
fastcgi_pass unix:/var/run/php/wordpress.sock;
|
||
|
fastcgi_param SCRIPT_FILENAME
|
||
|
$document_root$fastcgi_script_name;
|
||
|
include fastcgi_params;
|
||
|
}
|
||
|
|
||
|
location = /robots.txt {
|
||
|
allow all;
|
||
|
log_not_found off;
|
||
|
access_log off;
|
||
|
}
|
||
|
}
|