nginx相关
日志文件
./log/access.log
./log/error.log
nginx命令:
nginx -s reload # 重新加载配置
nginx -s stop # 直接杀死停止
nginx -s quit # 友好关闭
start nginx # 启动nginx
nginx -t #检测配置文件是否正确
搭载配置文件
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name 192.168.1.232;# 这个是部署地址的IP root E:\xxxxxx; #这个是根目录 location / { index index.html index.htm;#index文件,如果配置目录有就用,如果没有就会用nginx自带的 } } }View Code
然后几个关键截图:
标签:文件,log,配置文件,index,nginx,本地 From: https://www.cnblogs.com/wusenwusen/p/17614296.html