使用:
去官网下载指定版本1.24.0,直接将压缩包解压到指定目录,打开cmd即可启动
启动服务器:
方法一:打开cmd命令窗口,切换到nginx解压目录下,输入命令start nginx ,回车即可,然后在浏览器中输入http://localhost:80
方法二:双击nginx.exe,双击后你能看见一个小黑窗口一闪而过
关闭服务器:
方法一:输入nginx命令 nginx -s stop(快速停止nginx) 或 nginx -s quit(完整有序的停止nginx)
这两个命令的区别在于nginx -s stop是快速停止Nginx,而nginx -s quit是有序的停止Nginx,前者可能会导致数据没有完全保存;
方法二:(2)使用taskkill taskkill /f /t /im nginx.exe
重启服务器
nginx -s reload
常用命令:
启动/停止 NGINX:
nginx -s start/stop:启动或停止 NGINX 服务。
查看 NGINX 状态:
nginx -t:检查 NGINX 是否正常工作,并显示任何错误或警告信息。
配置 NGINX:
nginx.conf:打开 NGINX 的主配置文件。您可以在其中添加、编辑或删除配置选项,以自定义 NGINX 的行为。
查找和修改 NGINX 配置:
nginx -c /path/to/nginx.conf:在 NGINX 配置文件中查找或修改特定配置选项。其中,/path/to/nginx.conf是要查找或修改的配置文件的路径。
加载 NGINX 模块:
nginx -m:加载 NGINX 模块。NGINX 支持多种模块,例如缓存、SSL 终止、负载均衡等,可以使用此命令加载这些模块。
列出所有 NGINX 守护进程:
nginx -t:检查 NGINX 守护进程的状态,并显示任何错误或警告信息。
重启 NGINX 守护进程:
nginx -s restart:重启 NGINX 守护进程。
查看 NGINX 日志:
nginx -t:检查 NGINX 日志文件的状态,并显示任何错误或警告信息。
配置 NGINX 日志:
nginx.conf:配置 NGINX 日志文件的位置、大小、写入权限等。
监视 NGINX 性能:
nginx -t:检查 NGINX 性能状态,并显示任何错误或警告信息。
配置 NGINX 性能监视:
nginx.conf:配置 NGINX 性能监视的参数和方式。
文件配置:
html文件夹:这个文件夹是存放要打开的文件
conf:里边有个 nginx.conf 是配置文件
nginx.conf 配置
#user nobody;
worker_processes 1; //设置 Nginx 进程的数量
# 设置 Nginx 事件模块的配置
events {
worker_connections 1024; // 设置每个进程的最大连接数
}
http {
include mime.types; // 引入外部配置文件,避免单个配置文件过大
default_type application/octet-stream; // 设置默认的文件类型
keepalive_timeout 65; // 设置客户端与服务器端连接超时时间
server {
listen 80; // 监听端口
server_name location; // 设置服务器名称
# 设置根目录
location / {
root html/aaa; // 设置根目录
index index.html index.htm; // 设置默认首页
autoindex on; // 开启目录浏览功能
add_header 'Access-Control-Allow-Origin' '*';
## 代理转发地址,具体的 host 和 post 自己指定
# proxy_pass http://192.168.1.127:8069;
# location ~ / {
# proxy_pass http://192.168.1.127:8069;
# }
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
参考链接:https://blog.csdn.net/a910247/article/details/130180241