mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
20 lines
590 B
Text
20 lines
590 B
Text
|
location {{ wp_url }} {
|
||
|
#rewrite_log on;
|
||
|
root {{ content_base }};
|
||
|
|
||
|
location ~ .*\.php$ {
|
||
|
|
||
|
include fastcgi_params;
|
||
|
fastcgi_pass php;
|
||
|
fastcgi_index index.php;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
}
|
||
|
|
||
|
location ~ ^({{ wp_url }})(/.*)/$ {
|
||
|
include fastcgi_params;
|
||
|
fastcgi_pass php;
|
||
|
fastcgi_index index.php;
|
||
|
fastcgi_param SCRIPT_FILENAME {{ wp_abs_path }}/index.php;
|
||
|
}
|
||
|
}
|