当前位置:   article > 正文

Mac 本地搭建nginx_mac本地起ng文件

mac本地起ng文件

适用于小白!!

安装:brew install nginx

查看是否安装成功:brew info nginx

 

启动:sudo nginx

暂停:sudo nginx -s stop

重新启动:sudo nginx -s reload

启动之后浏览器输入:localhost:8080能看到下面画面即可。

nginx配置文件:/usr/local/etc/nginx/nginx.conf

 例如:

  1. server {
  2. listen 8080;
  3. server_name localhost;
  4. location / {
  5. root html;
  6. index index.html index.htm;
  7. }
  8. error_page 500 502 503 504 /50x.html;
  9. location = /50x.html {
  10. root html;
  11. }
  12. }
  13. server {
  14. listen 9000;
  15. server_name www.other.com;
  16. location / {
  17. proxy_pass http://127.0.0.1:8080;
  18. root /usr/local/var/www/;
  19. index index.html index.htm;
  20. }
  21. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/65443
推荐阅读
相关标签
  

闽ICP备14008679号