Ubuntu 下安裝nginx,以及首頁展示

注意下環境,不同環境下的操作可能會有差別

Ubuntu: 

root@bmd-miot-c:/home/gpmbio# cat /proc/version
Linux version 4.15.0-108-generic (buildd@lcy01-amd64-013) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #109-Ubuntu SMP Fri Jun 19 11:33:10 UTC 2020

nginx:

root@bmd-miot-c:/home/gpmbio# nginx -v
nginx version: nginx/1.14.0 (Ubuntu)

查看nginx.conf配置文件目錄

輸入命令

# nginx -t

返回結果包含配置文件目錄

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok

nginx: configuration file /etc/nginx/nginx.conf test is successful

查看nginx進程

gpmbio@bmd-miot-c:~$ ps -ef |grep nginx
root      9809     1  0 Jul02 ?        00:00:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
root      9812  9809  0 Jul02 ?        00:00:00 nginx: worker process
root      9814  9809  0 Jul02 ?        00:00:00 nginx: worker process
root      9816  9809  0 Jul02 ?        00:00:00 nginx: worker process
root      9817  9809  0 Jul02 ?        00:00:00 nginx: worker process
gpmbio   23727 23283  0 01:13 pts/1    00:00:00 grep --color=auto nginx

 

安裝以及設置首頁顯示

卸載方式

Nginx 出現 403 Forbidden 最終解決方法

附:

配置修改方法,https://www.cnblogs.com/tujietg/p/10753041.html

可惜沒生效,但還是要繼續研究的

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章