nginx降權與匹配php詳細講解
nginx降權啟動
確認普通用戶無法開啟nginx

創(chuàng)建普通用戶:
root@ubuntu:~# useradd -d /home/test -m test root@ubuntu:~# passwd test New password: Retype new password: passwd: password updated successfully root@ubuntu:~#
切換到test用戶:

測試是否可以啟動nginx:

啟動失敗
創(chuàng)建必需的相關文件
$ mkdir nginx $ cd nginx $ mkdir conf logs www sbin
使用root用戶copy配置文件中網頁支持類型文件
root@ubuntu:/www/env/nginx/conf# cp /www/env/nginx/conf/mime.types /home/test/nginx/conf/
使用root用戶拷貝nginx配置文件
root@ubuntu:~# cp /www/env/nginx/conf/nginx.conf /home/test/nginx/conf/

設置權限
root@ubuntu:~# chown -R test:test /www/env/nginx/ # 將當前前目錄下的所有文件與子目錄的擁有者皆設為 test,群體的使用者 test:
修改配置文件
worker_processes 4;
worker_rlimit_nofile 65535;
error_log /home/test/nginx/logs/error.log;
user test test;
pid /home/test/nginx/logs/nginx.pid;
events {
use epoll;
worker_connections 1024;
}
http {
include /home/test/nginx/conf/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 8080;
server_name localhost;
root /home/test/nginx/www;
location / {
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
access_log /home/test/nginx/logs/access.log;
}
全路徑啟動nginx -c參數(shù)使用指定的配置文件而不是conf目錄下的nginx.conf
/www/env/nginx/sbin/nginx -c /home/test/nginx/conf/nginx.conf &> /dev/null
安裝 PHP 7.4,配合 Nginx
安裝 PHP 和 PHP FPM 軟件包:
apt install php-fpm
檢查服務狀態(tài),運行:
systemctl status php7.4-fpm
修改權限
chmod 777 /run/php/php7.2-fpm.sock
配置php-fpm
修改配置監(jiān)聽9000端口來處理nginx的請求(這種方法一般在windows上使用),打開 /etc/php/7.2/fpm/pool.d/www.conf 文件找到如下位置注釋第一行添加第二行
;listen = /run/php/php7.2-fpm.sock listen = 127.0.0.1:9000
修改Nginx配置文件
找到下面這部分代碼取消注釋,修改配置
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi.conf;
}測試:
在/www/env/nginx/html下創(chuàng)建index.php文件:
root@ubuntu:/www/env/nginx/html# cat index.php <?php phpinfo() ?>
打開瀏覽器:

總結
到此這篇關于nginx降權與匹配php的文章就介紹到這了,更多相關nginx降權 匹配php內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
windows系統(tǒng)下關閉Nignx的多種方式總結
這篇文章主要給大家總結介紹了windows系統(tǒng)下關閉Nignx的多種方式, 在Windows中啟動Nginx是簡單的,但有許多小伙伴不會關閉,這里給大家介紹下,需要的朋友可以參考下2023-08-08
nginx?80端口配置多個location無效訪問404問題
這篇文章主要介紹了nginx?80端口配置多個location無效訪問404問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-06-06
Nginx服務器下使用rewrite重寫url以實現(xiàn)偽靜態(tài)的示例
這篇文章主要介紹了Nginx服務器下使用rewrite重寫url以實現(xiàn)偽靜態(tài)的示例,這里舉了Discuz!和WordPress這兩個常用的PHP程序,需要的朋友可以參考下2015-12-12

