如何在Windows上配置并运行Nginx
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Windows上配置并运行Nginx相关的知识,希望对你有一定的参考价值。
方法如下 1.从nginx官网下载相应的安装包 2.建议下载 下载稳定版 3.解压到相应的目录,比如是e盘 然后修改目录名字为nginx 4.进入nginx目录 双击nginx.exe 来启动nginx 5.此时 直接在浏览器地址栏输入:localhost 便能看到 欢迎页面,说明虚拟主... 参考技术A .NET Framework下载地址WinSW-1.9-bin下载地址
把NGINX安装到C:\RUNTIME\nginx目录。平时的启动命令为:
C:\RUNTIME\nginx\nginx.exe
停止它有两种方法,一种是打开进程管理器,把所有的nginx进程都杀死,而且看着它们都被杀死为止才行。一种是用命令行:
C:\RUNTIME\nginx\nginx.exe -s stop
要自动启动,你可以把winsw-1.9-bin.exe复制到C:\RUNTIME\nginx目录,改名为NginxServer.exe。
创建一个新的文件NginxServer.xml,内容如下:
<service
<idnginx-1.0</id
<namenginx-1.0</name
<descriptionnginx-1.0</description
<executableC:\RUNTIME\nginx\nginx.exe</executable
<logpathC:\RUNTIME\nginx</logpath
<logmoderoll</logmode
<depend</depend
<startargument-p C:\RUNTIME\nginx</startargument
<stopargument-p C:\RUNTIME\nginx -s stop</stopargument
</service
保存后,执行命令:
NginxServer.exe install
如果成功,就会返回命令行光标,没有提示。如果有错误提示,请确认你的电脑正确安装了.NET Framework 2.0.5或以上的环境。
卸载命令为:
NginxServer.exe uninstall
。
如何在Windows上运行带有Node.js的Nginx?
我想在Windows上安装Nginx,并运行两个节点应用程序。我怎样才能做到这一点?
我试图下载Nginx 1.6.3,但我没有找到关于如何在Windows上运行的相关内容。仅适用于Linux。我认为节点应该有一些模块。
任何建议都会有用!
答案
我从未在Windows上运行Nginx,但官方文档说明了:http://nginx.org/en/docs/windows.html。
要使用Nginx运行两个节点应用程序,必须创建一个代理。这是如何为此更改nginx.conf文件的示例:
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
gzip on;
server {
listen 80;
server_name localhost;
access_log C:varlog
ginxaccess.log;
location ~ ^/(javascripts|stylesheets|images) {
root C:app1public;
expires max;
}
location / {
proxy_pass http://localhost:3000;
}
}
server {
listen 81;
server_name localhost;
access_log C:varlog
ginxaccess.log;
location ~ ^/(javascripts|stylesheets|images) {
root C:app2public;
expires max;
}
location / {
proxy_pass http://localhost:3001;
}
}
}
在这种情况下,有两个节点应用程序,一个在端口3000上运行,另一个在端口3001上运行--Nginx用作代理。
进一步的文件:https://www.nginx.com/blog/nginx-nodejs-websockets-socketio/。
在您的情况下,配置文件本地化为:C:
ginx_v1_6conf
ginx.conf
备份默认文件并使用我发布的内容更新内容。
最后,如果节点服务器和Nginx服务器正在运行,您可以通过localhost
(默认端口80)和localhost:81
测试反向代理。
另一答案
以下是有关如何为Windows安装nginx的一些说明:
http://nginx.org/en/docs/windows.html
以上是关于如何在Windows上配置并运行Nginx的主要内容,如果未能解决你的问题,请参考以下文章