安裝 nginx。注意,這種方式最簡單,但無法新增第三方庫。
$ yum install -y nginx
編寫靜態網頁。
$ mkdir /data/web
$ vim index.html
hello world
在 /etc/nginx/nginx.conf 中新增 server,以訪問靜態網頁。
server
啟動 nginx
$ systemctl start nginx
或者
$ nginx -c /etc/nginx/nginx.conf
$ ps -ef | grep nginx
root 9386 1 0 15:48 ? 00:00:00 nginx: master process nginx -c /etc/nginx/nginx.conf
nginx 9387 9386 0 15:48 ? 00:00:00 nginx: worker process
root 9402 7089 0 15:48 pts/0 00:00:00 grep --color=auto nginx
訪問靜態網頁。
不過,為什麼是這個樣子?
在瀏覽器中訪問就正常了很多
停止 nginx
$ systemctl stop nginx
或者
$ ps -ef | grep nginx
root 9386 1 0 15:48 ? 00:00:00 nginx: master process nginx -c /etc/nginx/nginx.conf
nginx 9387 9386 0 15:48 ? 00:00:00 nginx: worker process
root 10415 7089 0 15:58 pts/0 00:00:00 grep --color=auto nginx
$ kill 9386
[root@vm_133_121_centos nginx]# kill 9387
$ ps -ef | grep nginx
root 10701 7089 0 16:01 pts/0 00:00:00 grep --color=auto nginx
參考
nginx安裝及配置詳解.
nginx的安裝 配置靜態檔案訪問
ubuntu平台可以使用如下命令 apt get install build essential apt get install libtool centos平台可以使用如 centos平台編譯環境使用如下指令 安裝make yum y install gcc automake autoconf l...
nginx訪問靜態HTML網頁
在伺服器上nginx安裝好後,如何把自己的網頁部署到伺服器上呢?這裡給出乙個簡單的方法。這需要你的伺服器先安裝過了nginx 一 二找到nginx的安裝目錄,如果你不記得了,可以使用下面的命令 ps ef grep nginx 找到安裝目錄,然後進入目錄下的conf,找到nginx.conf檔案開啟...
nginx安裝配置
主服務端 192.168.233.128 客戶端 192.168.233.131 192.168.233.132 192.168.233.134 主服務端和客戶端配置相同部分 yum y install zlib zlib devel yum y install pcre pcre devel yu...