摘要:一安裝添加源更新數(shù)據(jù),載入源數(shù)據(jù)安裝二安裝三為安裝擴(kuò)展四配置配置找到修改為,如下保存并退出,因?yàn)檫@是一個可能的安全漏洞。
一、安裝php7.1
#添加php源 sudo add-apt-repository ppa:ondrej/php #更新apt數(shù)據(jù),載入php源數(shù)據(jù) sudo apt update #安裝php-fpm sudo apt install php7.1-fpm sudo apt install php7.1
二、安裝nginx
sudo apt install nginx
三、為laravel 5.5安裝php擴(kuò)展
sudo apt install php7.1-mysql mcrypt php7.1-mcrypt php7.1-mbstring php7.1-xml openssl
四、配置php配置
sudo vim /etc/php/7.1/fpm/php.ini
找到 cgi.fix_pathinfo 修改為 0 ,如下:
cgi.fix_pathinfo=0
保存并退出,因?yàn)檫@是一個可能的安全漏洞。
五、為laravel配置nginx
sudo vi /etc/nginx/sites-enabled/default
server { listen 80 default_server; listen [::]:80 default_server; # SSL configuration # # listen 443 ssl default_server; # listen [::]:443 ssl default_server; # # Note: You should disable gzip for SSL traffic. # See: https://bugs.debian.org/773332 # # Read up on ssl_ciphers to ensure a secure configuration. # See: https://bugs.debian.org/765782 # # Self signed certs generated by the ssl-cert package # Don"t use them in a production server! # # include snippets/snakeoil.conf; root /var/www/html/auth/public; # Add index.php to the list if you are using PHP index index.php index.html index.htm index.nginx-debian.html; server_name _; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ /index.php?$query_string; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ .php$ { # include snippets/fastcgi-php.conf; # # # With php7.0-cgi alone: # fastcgi_pass 127.0.0.1:9000; # # With php7.0-fpm: # fastcgi_pass unix:/run/php/php7.0-fpm.sock; #} location ~ .php$ { include snippets/fastcgi-php.conf; # # # With php7.0-cgi alone: # fastcgi_pass 127.0.0.1:9000; # # With php7.0-fpm: fastcgi_split_path_info ^(.+.php)(/.+)$; fastcgi_pass unix:/var/run/php/php7.1-fpm.sock; # fastcgi_index index.php; include fastcgi_params; } # deny access to .htaccess files, if Apache"s document root # concurs with nginx"s one # #location ~ /.ht { # deny all; #} location ~ /.(?!well-known).* { deny all; } }
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/28117.html
摘要:一安裝添加源更新數(shù)據(jù),載入源數(shù)據(jù)安裝二安裝三為安裝擴(kuò)展四配置配置找到修改為,如下保存并退出,因?yàn)檫@是一個可能的安全漏洞。 一、安裝php7.1 #添加php源 sudo add-apt-repository ppa:ondrej/php #更新apt數(shù)據(jù),載入php源數(shù)據(jù) sudo apt update #安裝php-fpm sudo apt install php7.1-fpm su...
摘要:一安裝添加源更新數(shù)據(jù),載入源數(shù)據(jù)安裝二安裝三為安裝擴(kuò)展四配置配置找到修改為,如下保存并退出,因?yàn)檫@是一個可能的安全漏洞。 一、安裝php7.1 #添加php源 sudo add-apt-repository ppa:ondrej/php #更新apt數(shù)據(jù),載入php源數(shù)據(jù) sudo apt update #安裝php-fpm sudo apt install php7.1-fpm su...
摘要:環(huán)境搭建安裝之后訪問出現(xiàn)歡迎界面安裝注意可以查詢模塊擴(kuò)展安裝注意期間要設(shè)置密碼,填兩次密碼,注意查看和通信有種方式,一種是方式,還有種是方式。 Ubuntu16.04 lnmp 環(huán)境搭建 nginx 安裝 sudo apt-add-repository ppa:nginx/stablesudo apt-add-repository ppa:ondrej/phpsudo apt upda...
閱讀 576·2021-11-18 10:02
閱讀 1060·2021-11-02 14:41
閱讀 689·2021-09-03 10:29
閱讀 1902·2021-08-23 09:42
閱讀 2744·2021-08-12 13:31
閱讀 1209·2019-08-30 15:54
閱讀 1963·2019-08-30 13:09
閱讀 1437·2019-08-30 10:55