国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

nginx配置laravel

2019-11-08 03:02:38
字體:
來源:轉載
供稿:網友

異常日志:

 

sudo gedit /var/log/nginx/error.log

 

sudo service nginx restart

 

sudo gedit /etc/nginx/sites-available/default

 

4.2配置

server {

    listen 80 default_server;

    listen [::]:80 default_server ipv6only=on;

 

    # 設定網站根目錄

    root /var/www/laravel/public;

    # 網站默認首頁

    index index.php index.html index.htm;

 

    # 服務器名稱,server_domain_or_IP 請替換為自己設置的名稱或者 IP 地址

    server_name localhost;

 

    # 修改為 Laravel 轉發規則

    location / {

        try_files $uri $uri/ /index.php?$query_string;

    }

 

    # PHP 支持

    location ~ /.php$ {

        try_files $uri /index.php =404;

        fastcgi_split_path_info ^(.+/.php)(/.+)$;

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

        fastcgi_index index.php;

        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

        include fastcgi_params;

    }

}

 

5.0:

server {

    listen 80 default_server;

    listen [::]:80 default_server ipv6only=on;

 

    root /var/www/laravel/learnlaravel5/public;

    index index.html index.htm index.php;

 

    # Make site accessible from http://localhost/

    server_name localhost;

 

    location / {

        try_files $uri $uri/ /index.php?$query_string;

    }

    # Pass all .php files onto a php-fpm/php-fcgi server.

    location ~ [^/]/.php(/|$) {

        fastcgi_split_path_info ^(.+?/.php)(/.*)$;

        if (!-f $document_root$fastcgi_script_name) {

            return 404;

        }

        

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

include fastcgi_params;

    }

 

 


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 南宁市| 综艺| 于都县| 荣成市| 富川| 阳朔县| 当雄县| 赤城县| 长宁县| 三亚市| 策勒县| 东平县| 前郭尔| 清徐县| 开化县| 昭平县| 越西县| 南部县| 隆德县| 屏边| 隆昌县| 平潭县| 北安市| 漠河县| 米泉市| 民县| 泰兴市| 高尔夫| 亳州市| 若尔盖县| 从江县| 宣汉县| 皋兰县| 雅安市| 岐山县| 陇川县| 宜阳县| 三门峡市| 石屏县| 通道| 棋牌|