1. 程式人生 > >nginx配置php站點代理

nginx配置php站點代理

server {
listen 80;
server_name config.xxxx.com;
access_log /data/nginx/logs/config.xxxx.com/config.xxxx.com.log main;

    location / {
    root /data/www/config;
    index index.php;
    }

    location ~ \.php$  {
        root           /data/www/config;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;

        fastcgi_param SCRIPT_FILENAME           $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }

}

###################################
###################################

nginx配置php站點代理

nginx配置php站點代理

我之前沒有加“ location / ”出現如上圖所示的問題,訪問域名出現nginx歡迎介面,然後域名後面加上index.php雖然出現的登陸介面,但是明顯感覺有很多js,html等等檔案沒有加載出來。
然後我領導告訴我“ location ~ .php$ “ location只匹配字尾為.php的檔案,js,html等檔案是找不到的,所以大哥要碟不。