You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
63 lines
2.0 KiB
server {
|
|
server_name
|
|
wp-with-file-proxy.local.wpstudio.ru
|
|
;
|
|
listen 80;
|
|
root $root;
|
|
index index.html index.htm index.php;
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$args;
|
|
}
|
|
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
|
|
location ~* ^/wp-content/uploads/.*$ {
|
|
expires max;
|
|
proxy_pass $uploads_upstream;
|
|
}
|
|
location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
|
|
access_log off;
|
|
}
|
|
location ~ [^/]\.php(/|$) {
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
if (!-f $document_root$fastcgi_script_name) {
|
|
return 404;
|
|
}
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
|
|
|
|
fastcgi_pass php74;
|
|
fastcgi_index index.php;
|
|
fastcgi_read_timeout 3000;
|
|
}
|
|
}
|
|
|
|
server {
|
|
server_name
|
|
wp.local.wpstudio.ru
|
|
;
|
|
listen 80;
|
|
root $root;
|
|
index index.html index.htm index.php;
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$args;
|
|
}
|
|
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
|
|
location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
|
|
access_log off;
|
|
}
|
|
location ~ [^/]\.php(/|$) {
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
if (!-f $document_root$fastcgi_script_name) {
|
|
return 404;
|
|
}
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
|
|
|
|
fastcgi_pass php74;
|
|
fastcgi_index index.php;
|
|
fastcgi_read_timeout 3000;
|
|
}
|
|
}
|