मैं एक छोटी बूंद (डिजिटल महासागर) में एक वेबसाइट स्थापित कर रहा हूं। मैं ठीक से 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 / साइट-उपलब्ध / डिफ़ॉल्ट
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
}
... अन्य "स्थान" टिप्पणी की गई है (#)