我在数字海洋上创建了一个LEMP堆栈的ubuntu服务器,但无法指向我的应用程序。
当我转到我的服务器IP地址时,它会转到/ var / www / html中的index.php文件,但我希望它指向/ var / www / itom / public。
这是我的nginx配置文件
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/itom/public;
index index.php index.html index.htm index.nginx-debian.html;
server_name 138.68.135.117;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
我已经用
重新启动了nginxservice nginx restart
任何想法的人?