安裝WordPress,我想設置我的博客同一個網站的子目錄下的example.com/blog
在子目錄中的Nginx
我使用多種設置它嘗試過,但沒有工作中。有的給出502錯誤,有的給404以下配置給出沒有指定輸入文件錯誤。
server {
listen 80;
server_name www.example.com;
gzip on;
location/{
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-Ip $remote_addr;
proxy_pass http://localhost:8080;
}
location ^~ /blog{
root /home/myubuntu/www/blog;
index index.php index.html index.htm;
try_files $uri $uri/ /blog/index.php?q=$uri&$args;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
我運行一個子域此相同的博客與成功配置如下:
server {
listen 80;
root /home/myubuntu/www/blog;
index index.php index.html index.htm;
server_name blog.example.com;
gzip on;
location/{
try_files $uri $uri/ /index.php?q=$uri&$args;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx.html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
可能有人請告訴我,我在做什麼錯
任何人都可以管理這個代碼,即刪除HTML標籤('code'和pre)並以系統化的方式進行管理。因爲它是經過測試的代碼並且工作正常。 – Shankaranand 2015-07-03 11:41:37