[web][nginx] 初識nginx
阿新 • • 發佈:2017-05-12
gpgcheck repo div href tar -- web nbsp emctl
環境 CentOS 7 X86
文檔:
https://nginx.org/en/docs/
安裝:
[[email protected] ~]# cat /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearch/ gpgcheck=0 enabled=1 [[email protected] ~]#
[[email protected] ~]# yum install nginx
配置文件: 默認不需要更改
[[email protected] ~]# vim /etc/nginx/nginx.conf [[email protected] ~]# vim /etc/nginx/conf.d/default.conf
啟動:
# nginx
或
# systemctl start nginx
瀏覽器直接訪問即可。
自定義頁:拷貝至配置文件指定的目錄後,就可以在瀏覽器中訪問了。
[[email protected] html]# pwd /usr/share/nginx/html [[email protected] html]# ll total40 -rw-r--r--. 1 root root 537 Apr 12 23:23 50x.html -rw-r--r--. 1 root root 2595 May 12 11:37 index_a.html -rw-r--r--. 1 root root 620 May 12 11:40 index.html -rw-r--r--. 1 root root 25987 May 12 11:38 lonely.jpg [[email protected] html]#
如: http://192.168.7.4/index_a.html
[web][nginx] 初識nginx