配置Nginx以在CentOS中加载Laravel 5.8站点

问题描述 投票:0回答:1

我有一个位于/var/www/html/got/的Laravel 5.8项目


如果我运行php artisan serve,它工作正常。但我试图通过nginx部署我的网站。


sites-available/default

server {

       listen   [::]:80;
       listen   80;
       root /var/www/html/got/public;

       index index.php index.html index.htm;

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

       location ~ \.php?$ {
               try_files $uri =404;
               include fastcgi_params;
               fastcgi_pass 127.0.0.1:9000;
               fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
               fastcgi_read_timeout 300;
               fastcgi_intercept_errors on;
               fastcgi_split_path_info ^(.+\.php)(.*)$;
               #Prevent version info leakage
               fastcgi_hide_header X-Powered-By;
               proxy_read_timeout 300;
       }

}

nginx.conf

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    # include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-available/*;
    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }

}

我不断得到

enter image description here

我做错了什么 ?

linux laravel nginx laravel-5 centos
1个回答
1
投票

nginx.conf应该是这样的:

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

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

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

来自/etc/nginx/sites-available目录的文件应该软链接到目录/etc/nginx/sites-enabled,从不直接包含。

复制文件/etc/nginx/sites-available/default以反映域,类似于/etc/nginx/sites-available/example.com.conf,然后修改server {}部分以反映以下内容:

listen 80;
listen 443 ssl http2;
server_name .example.com;
root "/var/www/html/got/public";
© www.soinside.com 2019 - 2024. All rights reserved.