centos下nginx的配置

2021-07-23 12:22:10 字數 646 閱讀 3790

支援php:

擴充套件:yum install php-fpm

重啟:service php-fpm start

更改配置:gedit /etc/nginx/conf.d/default.conf

找到這段配置**:

#location ~ \.php$

去掉注釋,改為

location ~ \.php$

測試環境:

新增檔案:touch /usr/share/nginx/html/info.php

修改檔案內容:gedit /usr/share/nginx/html/info.php

寫入**:

重啟服務:service nginx restart

service php-fpm restart

瀏覽器輸入:localhost/info.php

支援mysql

開啟mysql服務:service mysqld start

測試環境:

新增檔案:touch /usr/share/nginx/html/mysql.php

修改檔案內容:gedit /usr/share/nginx/html/mysql.php

寫入**:

瀏覽器輸入:localhost/mysql.php

CentOS下Nginx的HTTPS配置

nginx的安裝後,現在需要給 新增安全證書的達到可以實現https請求的功能。1.首先我們需要乙個證書 可以使用自簽名的證書 如何自簽可以網上搜尋下 雖然可以使用但不會被chrome,firefox,safari等瀏覽器認可。也可以去網上購買證書,加個幾百元到上萬元不等可以自行選擇合適價位的證書,...

CentOS 下Nginx環境配置

linux版本 centos7 64位 nginx依賴元件 gcc openssl devel pcre devel zlib devel 快速安裝依賴 yum install gcc openssl devel pcre devel zlib devel 解壓 tar zxvf nginx 1.9...

CentOS下nginx的安裝與配置

1.nginx的安裝 由於nginx的一些模組需要其他的第三方庫的支援,例如gzip,模組需要zlib庫,ssl模組需要用到openssl庫,rewrite模組需要用到pcre庫等。暫時只安裝需要的庫即可,現在只需要用到gzip模組和rewrite模組。首先,需要安裝pcre時,需要用到c 庫,否則...