如何设置文档根目录以使用 Nginx 加载 Laravel 应用程序?

How to set document root to load Laravel application using Nginx?

我的站点一直显示 phpinfo();当我降落在上面时


server {

    listen 80 default_server;
    server_name
    default;
    root / home / forge / aveniros / public;
    index index.html index.htm index.php;

    #
    FORGE SSL(DO NOT REMOVE!)# ssl_certificate;#
    ssl_certificate_key;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    index index.html index.htm index.php;

    charset utf - 8;

    location / {
        try_files $uri $uri / /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log /
        var / log / nginx /
        default -error.log error;

    error_page 404 / index.php;

    location~\.php$ {
        fastcgi_split_path_info ^ (. + \.php)(/.+)$;
            fastcgi_pass unix: /var/run / php5 - fpm.sock; fastcgi_index index.php; include fastcgi_params;
        }

        location~/\.ht {
        deny all;
    }
}

然后,我运行sudo service nginx restart我保存后。 好像什么都没生效。

有人可以告诉我我做错了什么吗?

您需要将您的服务器名称设置为 _,目前您只能侦听对名称 default 的请求。

server_name  _;

使用这个虚拟主机

server {
listen       80;
server_name  project.dev;
root /var/www/directory/project/public;

access_log /var/log/nginx/access.log;
error_log  /var/log/nginx/error.log;

location / {
    index index.php;
    try_files $uri $uri/ /index.php?$args;
}

location ~ \.php/?(.*)$ {

    fastcgi_connect_timeout 3s;     # default of 60s is just too long
    fastcgi_read_timeout 10s;       # default of 60s is just too long

    fastcgi_pass unix:/var/run/php5-fpm.sock; 
    fastcgi_index  index.php;

    include fastcgi_params;

    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
}
location /phpmyadmin {
root /usr/share/;
index index.php index.html index.htm;
location ~ ^/phpmyadmin/(.+\.php)$ {
try_files $uri =404;
fastcgi_pass   unix:/var/run/php5-fpm.sock;
include fastcgi_params;
}
} 
}

我的网站正在运行。这是我的设置:

文件路径:~/etc/nginx/sites-available/default

server {
    listen 80 default_server;
    server_name default;
    root /home/forge/aveniros/public;

    #HTTP Authentication Configuartion
    auth_basic "Restricted";
    auth_basic_user_file /home/forge/aveniros/.htpasswd;

    # FORGE SSL (DO NOT REMOVE!)
    # ssl_certificate;
    # ssl_certificate_key;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/default-error.log error;

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }
}