MAC下安裝nginx

必備工具
homebrew https://brew.sh/index_zh-cn.html (安裝方法自行搜索)html

安裝完畢後打開命令行nginx

步驟一:先更新homebrew工具

brew update

若是上面操做長時間沒任何動靜,請更換鏡像,參考清華的鏡像 https://mirrors.tuna.tsinghua...spa

步驟二: 查看nginx信息命令行

brew search nginx

clipboard.png

步驟三:安裝nginxcode

brew install nginx

clipboard.png

安裝完畢
主頁的文件在/usr/local/var/www 文件夾下
對應的配置文件地址在/usr/local/etc/nginx/nginx.confserver

clipboard.png

步驟四:運行nginxhtm

nginx

nginx默認使用8080端口 若是發現端口被佔用了,能夠殺掉使用使用改端口的進程,也能夠修改/usr/local/etc/nginx/nginx.conf 下的blog

http {
    server {
        listen       8181;
        server_name  localhost;  

        #charset koi8-r;
        .....
        }
    }

從新啓動nginx進程

nginx -s reload

成功看到歡迎頁面~!(對應的html是/usr/local/var/www/index.html)
clipboard.png

相關文章
相關標籤/搜索