Skip to content
On this page

安装 nginx

下载安装文件


nginx 官网上下载相应的安装包
1591066180(1).jpg

解压


1591066266(1).jpg
进入 conf ,找到 nginx.conf,可以修改监听端口,新增而外配置文件夹

1591081461(1).png

常用命令

在 nginx 当前目录下执行命令

  • start nginx.exe 启动
  • nginx.exe -s stop 结束
  • nginx.exe -s reload 重启

反向代理本地静态文件


spa 项目本地打包后可以利用 nginx 反向代理,做成本地访问服务

在 vhost 文件夹下新建 dh.conf 文件

nginx
server {
	listen 9527;
	server_name localhost;
	
	location / {
		root /nginx/dh; # 打包后的静态文件目录
		index index.html index.htm;
		try_files   $uri $uri/ /index.html;
	}
	
	location /api {
		proxy_pass http://www.dherp.com/index.php/api; # 反向代理到后端服务
		proxy_redirect off;
	}
}