web-dev-qa-db-ja.com

Nginx + Wordpressサブディレクトリ内

最近、ホームサイトをASP.NET Core 1.0に移行しました。これにより、Linux環境でWebサイトを移動できました。 wordpressブログであるこのサイトの下に/ blogもあります。W3Total Cacheを除いてすべて正しく移行されました。ここで私がやったことです。

インストールされたPHP-FPMとDNXの両方がNginxのリバースプロキシの背後にあります。これがフォルダ階層です。/var/www/aspnet/var/www/wordpress

ここにすべてのNginx関連の設定ファイルがあります

/etc/nginx/nginx.conf

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    log_format scripts '$document_root$fastcgi_script_name > $request';
    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;

}

/etc/nginx/sites-available/xyz.com

server {
    listen 443 ssl http2;
    server_name xyz.com www.xyz.com;
    ssl_certificate /etc/ssl/certs/cert_chain.crt;
    ssl_certificate_key /etc/ssl/private/xyz.private.txt;   
    access_log /var/log/nginx/scripts.log scripts;

    # Global restrictions configuration file.
    # Designed to be included in any server {} block.
    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }

    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }

    # Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac).
    # Keep logging the requests to parse later (or to pass to firewall utilities such as fail2ban)
    location ~ /\. {
        deny all;
    }

    # Deny access to any files with a .php extension in the uploads directory
    # Works in sub-directory installs and also in multisite network
    # Keep logging the requests to parse later (or to pass to firewall utilities such as fail2ban)
    location ~* /blog/(?:uploads|files)/.*\.php$ {
        deny all;
    }

    gzip_types text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon;
    location ~ ^/blog/\.(css|htc|less|js|js2|js3|js4)$ {
        expires 31536000s;
        add_header Pragma "public";
        add_header Cache-Control "max-age=31536000, public";
    }
    location ~ \.(html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml)$ {
        expires 3600s;
        add_header Pragma "public";
        add_header Cache-Control "max-age=3600, public";
    }
    location ~ \.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|eot|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|json|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|otf|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|svg|svgz|swf|tar|tif|tiff|ttf|ttc|wav|wma|wri|woff|xla|xls|xlsx|xlt|xlw|Zip)$ {
        expires 31536000s;
        add_header Pragma "public";
        add_header Cache-Control "max-age=31536000, public";
    }
    location / {
        proxy_pass http://unix:/var/www/aspnet/kestrel.sock;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection keep-alive;
        proxy_set_header Host $Host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_cache_bypass $http_upgrade;
    }
    location /phpmyadmin/ {
        alias /var/www/phpMyAdmin/;
        index index.php;
    }

    location ~ ^/phpmyadmin/(.+\.php)$ {

        alias /var/www/phpMyAdmin/$1;
        fastcgi_pass   unix:/run/php/phpmyadmin.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $request_filename;

        # From fastcgi_params
        fastcgi_param  QUERY_STRING       $query_string;
        fastcgi_param  REQUEST_METHOD     $request_method;
        fastcgi_param  CONTENT_TYPE       $content_type;
        fastcgi_param  CONTENT_LENGTH     $content_length;
        fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
        fastcgi_param  REQUEST_URI        $request_uri;
        fastcgi_param  DOCUMENT_URI       $document_uri;
        fastcgi_param  DOCUMENT_ROOT      /var/www/phpMyAdmin;
        fastcgi_param  SERVER_PROTOCOL    $server_protocol;
        fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
        fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;
        fastcgi_param  REMOTE_ADDR        $remote_addr;
        fastcgi_param  REMOTE_PORT        $remote_port;
        fastcgi_param  SERVER_ADDR        $server_addr;
        fastcgi_param  SERVER_PORT        $server_port;
        fastcgi_param  SERVER_NAME        $server_name;
        fastcgi_param  REDIRECT_STATUS    200;
    }

    location /blog/ {           
        try_files $uri $uri/ index.php?q=$request_uri;
        alias /var/www/wordpress/;
        index index.php;                        
    }   

    location ~ \.php$ {             
        include /var/www/wordpress/nginx.conf;
        try_files $uri $uri/ index.php?q=$request_uri =404;
        alias /var/www/wordpress/$1;
        fastcgi_pass   unix:/run/php/phpmyadmin.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;


        # From fastcgi_params
        fastcgi_param  QUERY_STRING       $query_string;
        fastcgi_param  REQUEST_METHOD     $request_method;
        fastcgi_param  CONTENT_TYPE       $content_type;
        fastcgi_param  CONTENT_LENGTH     $content_length;
        fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
        fastcgi_param  REQUEST_URI        $request_uri;
        fastcgi_param  DOCUMENT_URI       $document_uri;
        fastcgi_param  DOCUMENT_ROOT      /var/www/wordpress;
        fastcgi_param  SERVER_PROTOCOL    $server_protocol;
        fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
        fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;
        fastcgi_param  REMOTE_ADDR        $remote_addr;
        fastcgi_param  REMOTE_PORT        $remote_port;
        fastcgi_param  SERVER_ADDR        $server_addr;
        fastcgi_param  SERVER_PORT        $server_port;
        fastcgi_param  SERVER_NAME        $server_name;
        fastcgi_param  REDIRECT_STATUS    200;          
    }
}

/var/www/wordpress/nginx.conf-これは、W3 Total Cacheプラグインによって生成されたファイルです。

# BEGIN W3TC Page Cache core
set $w3tc_rewrite 1;
if ($request_method = POST) {
    set $w3tc_rewrite 0;
}
if ($query_string != "") {
    set $w3tc_rewrite 0;
}
if ($request_uri !~ \/$) {
    set $w3tc_rewrite 0;
}
if ($http_cookie ~* "(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle)") {
    set $w3tc_rewrite 0;
}
if ($http_cookie ~* "(w3tc_preview)") {
    set $w3tc_rewrite _preview;
}
set $w3tc_ssl "";
if ($scheme = https) {
    set $w3tc_ssl _ssl;
}
set $w3tc_enc "";
if ($http_accept_encoding ~ gzip) {
    set $w3tc_enc _gzip;
}
set $w3tc_ext "";
if (-f "$document_root/var/www/wordpress/wp-content/cache/page_enhanced/$http_Host/$request_uri/_index$w3tc_ssl$w3tc_rewrite.html$w3tc_enc") {
    set $w3tc_ext .html;
}
if (-f "$document_root/var/www/wordpress/wp-content/cache/page_enhanced/$http_Host/$request_uri/_index$w3tc_ssl$w3tc_rewrite.xml$w3tc_enc") {
    set $w3tc_ext .xml;
}
if ($w3tc_ext = "") {
  set $w3tc_rewrite 0;
}
if ($w3tc_rewrite = 1) {
    rewrite .* "/var/www/wordpress/wp-content/cache/page_enhanced/$http_Host/$request_uri/_index$w3tc_ssl$w3tc_rewrite$w3tc_ext$w3tc_enc" last;
}
# END W3TC Page Cache core

上記の設定を行ったら、ワードプレスのパーマリンクを実行できます。しかし、/ blog /または/ blog/wp-admin /を開くと、見つからないことが表示されます。トラブルシューティングの目的で、nginxにいくつかのカスタムロギングを次のように追加しました。

log_format scripts '$document_root$fastcgi_script_name > $request';

これはログが示したものです

/var/www/wordpress//blog/wp-admin/index.php> GET /blog/wp-admin/index.php HTTP/2.0 /var/www/wordpress//blog/index.php> GET/blog/HTTP/2.0

私は多くの解決策を試しました。それらのすべては、親サイトがワードプレスであることを想定しています。私の場合、親サイトはDotNet Core 1上に構築されています。/blogはmy wordpress blogです。この問題は、間違った書き換えルールの1つである必要があります。

問題を要約すると、I W3 Total Cacheは問題ではありません。私はそれなしで生きることができます。手元の問題は、wordpressサイトをサブドメインとして静的サイトにホストする場合のルールの書き換えに関するものです。W3の合計キャッシュ構成部分は無視できます。mydomain.com/ blogのようなサイトをホストしています。と書き換えルールが適用されません。現在、多くの代替手段を試しました。誰かがWordpressをマルチサイトサブディレクトリではなく純粋なサブディレクトリとして実装している場合、それらは正常な構成を提供できます。

6
Chintan Shah

これはあなたの質問に直接答えるものではありませんが、おそらくあなたが考慮しなかったかもしれないより良い選択肢です。プラグインを使用してキャッシュを行う代わりに、Nginxページキャッシュを使用します。 PHPを呼び出す必要がないため、はるかに高速になり、オーバーヘッドが大幅に削減されます。

マイナス面は、商用バージョンのNginxにお金を払わない限り、Nginxキャッシュを無効にするのが難しいことです。仕事をするプラグインでNginxを構築できますが、Wordpress/Nginxキャッシングの統合は素晴らしいものではありません。どれもうまく機能しないことがわかったため、キャッシュの最大寿命を慎重に設定する必要があります。興味深いことに、ビジーなサイトでは、数秒でもキャッシュすることでメリットが得られます。サイトはめったに変更されません。必要な場合は、nginxページキャッシュが存在する正しいディレクトリ(実際にはメモリ内にあります)をrm -rfすることができます。

これについてのチュートリアルがあります here 、そして他にもたくさんあります。 Nginxマイクロキャッシュはこちら に関する素晴らしい記事があります。

SFは、ウェブサイトが消えた場合に備えて、ページ上の実際のデータを気に入っています。

あなたのnginx.confで

fastcgi_cache_key "$scheme$request_method$Host$request_uri";

サイトファイルの先頭、またはnginx構成

fastcgi_cache_path /dev/shm/nginxcache levels=1:2 keys_zone=CACHENAME:10m inactive=1440m; # Centos / Amazon Linux in RAM, 1440 minutes = 24 hours

PHPを呼び出すロケーションブロック内

fastcgi_pass php56-fpm;
include        fastcgi_params;
fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;

fastcgi_cache_use_stale error timeout invalid_header http_500;
fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
fastcgi_cache CACHENAME;
fastcgi_cache_valid 200 1440m;
fastcgi_cache_valid 403 404 405 410 414 301 302 307 60m;
add_header X-Cache $upstream_cache_status; # This can be removed if desired

fastcgi_cache_methods GET HEAD;
fastcgi_keep_conn on;

私がリンクしたチュートリアルには、より多くの情報と説明があります。

1
Tim

(現在の状況から)問題を解決するためのいくつかの手順が必要です...

ファイルシステムで...

参照: https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory

  1. WordPressコアファイルを_/var/www/wordpress_から_/var/www/wordpress/blog_に移動します。(ヒント:_mv /var/www/wordpress /var/www/blog && mkdir /var/www/wordpress && mv /var/www/blog /var/www/wordpress_)

  2. _/var/www/wordpress/blog/index.php_をディレクトリ_/var/www/wordpress/_にコピーします。

  3. _/var/www/wordpress/index.php_ファイルを編集し、require( dirname( __FILE__ ) . '/wp-blog-header.php' );という行をrequire( dirname( __FILE__ ) . '/blog/wp-blog-header.php' );に変更します。

Nginx:

Nginxの部分です。関連パーツの変更点は次のとおりです...

_location /blog {           
    root /var/www/wordpress;
    index index.php;
    try_files $uri $uri/ /blog/index.php?q=$request_uri;                        
}   

location ~ \.php$ {             
    root /var/www/wordpress;
    index index.php;
    try_files $uri $uri/ /blog/index.php?q=$request_uri =404;

    # other configuration directives
}
_

主な変更点は2つあります。

  1. aliasディレクティブはrootになります
  2. _try_files_ディレクティブには、_/blog/_の前に_index.php_が含まれています。

これが役に立てば幸いです!

0
Pothi Kalimuthu