本文详细介绍了Nginx在Mac自然环境下的配置以及访问本地静态资源的完成。原文根据示例代码非常详细,对大家的学习或工作都有一定的参考价值。有需要的朋友会陪我一起学习。
本地开发设计有时候要调整静态的文档资源,不能马上访问。可以按照配置本地Nginx服务项目的方法进行。顺便记录一下Nginx的配置过程。
安装
Nginx指令:
<!--起动:--> nginx <!--终止/重新启动--> nginx-sstop/start/restart配置文件
文件详细地址:usr/local/etc/nginx/nginx.conf
#这里配置为rootowner才可以访问root的静态文档,不然会报403 userrootowner; worker_processes1; #error_loglogs/error.log; #error_loglogs/error.lognotice; #error_loglogs/error.loginfo; #pidlogs/nginx.pid; events{ worker_connections1024; } http{ includemime.types; default_typeapplication/octet-stream; #log_formatmain'$remote_addr-$remote_user[$time_local]"$request"' #'$status$body_bytes_sent"$http_referer"' #'"$http_user_agent""$http_x_forwarded_for"'; #access_loglogs/access.logmain; sendfileon; #tcp_nopushon; #keepalive_timeout0; keepalive_timeout65; #gzipon; server{ #监视端口号 listen8080; #关联网站域名 server_namelocal.XXX.com; #charsetkoi8-r; #access_loglogs/host.access.logmain; #文件路径和通道文档 location/{ root/usr/local/var/www; indexindex.htmlindex.htm; } #插口资源1 location/XXXapi/{ proxy_passhttps://api.XXX.com; } #插口资源2 location/apiXXX/{ proxy_passhttps://api.XXX.com; } #error_page404/404.html; #redirectservererrorpagestothestaticpage/50x.html # error_page500502503504/50x.html; location=/50x.html{ roothtml; } } includeservers/*; }配置过程
至此,关于Nginx在Mac自然环境下的配置和访问本地静态资源的完成,本文已经详细介绍过了。有关Nginx配置和访问本地静态资源的大量信息,请搜索您以前的文章或再次访问下面的相关文章。期待你以后的申请!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)