win下 Nginx.conf 路径配置规范
网上有种说法是win下Nginx不能设置绝对路径,但我在Nginx-1.24.0下是设置成功的。
如使用:C:\软件\Nginx 路径,nginx会报找不到文件的错误。
如使用:C:\Program Files\Nginx 路径,nginx会报找不到文件的错误。除非改成: C:\ProgramFiles\Nginx
如使用:C:\nginx 路径,nginx会报找不到文件的错误。原因是,nginx会把\n识别成换行,最终路径被识别为:
C: ginx
正确的写法是:C:\\nginx。我们可以一律用双斜杠\\代替单斜杠\
举个例子,error_log配置如下:
nginx会报错:
worker_processes 1; error_log D:\nginx\logs\error.log info; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } server { #监听443端口 listen 443 ssl; server_name 127.0.0.1; #ssl证书的crt文件路径 ssl_certificate D:\SSLCertificate\server.crt; #ssl证书的key文件路径 ssl_certificate_key D:\SSLCertificate\server.key; location / { root html; index index.html index.htm; proxy_pass http://127.0.0.1:7001; } } }