服务器根目录总是显示欢迎使用 Nginx
Server root always shows Welcome to Nginx
我正在使用 OctoberCMS 并在 IBM Softlayer 中的 Ubuntu 14.04 实例上使用 apt-get 安装了 Nginx。这是我的配置,出于某种原因我发现了奇怪的行为。我曾使用 linux 并安装过 nginx,但这很烦人。
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html/hd;
index index.php index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
rewrite ^themes/.*/(layouts|pages|partials)/.*.htm /index.php break;
rewrite ^bootstrap/.* /index.php break;
rewrite ^config/.* /index.php break;
rewrite ^vendor/.* /index.php break;
rewrite ^storage/cms/.* /index.php break;
rewrite ^storage/logs/.* /index.php break;
rewrite ^storage/framework/.* /index.php break;
rewrite ^storage/temp/protected/.* /index.php break;
rewrite ^storage/app/uploads/protected/.* /index.php break;
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
问题是我的根 http://mywebsite.com/ shows the infamous “Welcome to nginx!” page but http://mywebsite.com/index.php 显示了我实际的网络应用首页。我曾尝试在 Whosebug 中搜索类似问题并测试了各种响应,但都没有成功。更令人惊讶的是,当我完全卸载 nginx 时,即通过 apt-get purge 和 delete nginx 它删除了我的网络应用程序,但仍然显示令人惊讶的欢迎页面(即使在 rm -rf /etc/nginx ) 所以我对这里发生的事情感到困惑。帮助将不胜感激。谢谢!
我认为问题与您的 PHP 位置块有关。尝试将您的位置块更新为以下配置。 这是为 PHP 7 设计的,因为 Laravel 不再支持 PHP 5
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
我正在使用 OctoberCMS 并在 IBM Softlayer 中的 Ubuntu 14.04 实例上使用 apt-get 安装了 Nginx。这是我的配置,出于某种原因我发现了奇怪的行为。我曾使用 linux 并安装过 nginx,但这很烦人。
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html/hd;
index index.php index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
rewrite ^themes/.*/(layouts|pages|partials)/.*.htm /index.php break;
rewrite ^bootstrap/.* /index.php break;
rewrite ^config/.* /index.php break;
rewrite ^vendor/.* /index.php break;
rewrite ^storage/cms/.* /index.php break;
rewrite ^storage/logs/.* /index.php break;
rewrite ^storage/framework/.* /index.php break;
rewrite ^storage/temp/protected/.* /index.php break;
rewrite ^storage/app/uploads/protected/.* /index.php break;
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
问题是我的根 http://mywebsite.com/ shows the infamous “Welcome to nginx!” page but http://mywebsite.com/index.php 显示了我实际的网络应用首页。我曾尝试在 Whosebug 中搜索类似问题并测试了各种响应,但都没有成功。更令人惊讶的是,当我完全卸载 nginx 时,即通过 apt-get purge 和 delete nginx 它删除了我的网络应用程序,但仍然显示令人惊讶的欢迎页面(即使在 rm -rf /etc/nginx ) 所以我对这里发生的事情感到困惑。帮助将不胜感激。谢谢!
我认为问题与您的 PHP 位置块有关。尝试将您的位置块更新为以下配置。 这是为 PHP 7 设计的,因为 Laravel 不再支持 PHP 5
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}