물방울 (Digital Ocean)에 웹 사이트를 설치하고 있습니다. PHP로 NGINX를 올바르게 설치하는 데 문제가 있습니다. 나는 https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-14-04 튜토리얼을 했지만 일부를 실행하려고 할 때 .php 파일 그냥 다운로드 중입니다 ... 예를 들어 ... http://5.101.99.123/info.php
작동하지만 ... 메인으로 이동하면 http://5.101.99.123
내 index.php를 다운로드합니다 : /
어떤 생각?
-rw-r--r-- 1 agitar_user www-data 418 Jul 31 18:27 index.php
-rw-r--r-- 1 agitar_user www-data 21 Aug 31 11:20 info.php
내 / etc / nginx / sites-available / default
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /var/www/html;
index index.html index.htm index.php;
# Make site accessible from http://localhost/
server_name agitarycompartir.com;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location / {
try_files $uri $uri/ =404;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
... 기타 "위치"는 주석 처리됩니다 (#)