Alibaba Cloudに対応したVPSMateパネルをインストールした際、Webサイトのトップページを開いてファイルを直接ダウンロードしたのですが、phpが解析されていないのかと思いましたが、やり方が分かりません。同僚が解決して記録してくれました~
追記: csdn がついにマークダウンをサポートしました 簡単ではありません...
解決方法:
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; include fastcgi_params; }
server { # Generated by VPSMate listen 80; server_name _ www.paoyx.com; index index.html index.htm index.php; location / { root /var/www; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; include fastcgi_params; } location = /404.html { alias /usr/share/nginx/html; } location = /50x.html { alias /usr/share/nginx/html; }}