win下 Nginx.conf 路径配置规范
可使用win绝对路径
网上有种说法是win下Nginx不能设置绝对路径,但我在Nginx-1.24.0下是设置成功的。
路径不能包含中文
如使用:C:\软件\Nginx
路径,nginx会报找不到文件的错误。
路径不能包含空格
如使用:C:\Program Files\Nginx
路径,nginx会报找不到文件的错误。除非改成: C:\ProgramFiles\Nginx
路径中的"\n"会被识别成换行
如使用:C:\nginx
路径,nginx会报找不到文件的错误。原因是,nginx会把\n
识别成换行,最终路径被识别为:
C:
ginx
正确的写法是:C:\\nginx
。我们可以一律用双斜杠\\
代替单斜杠\
举个例子,error_log配置如下:
nginx会报错:文章来源:https://www.toymoban.com/news/detail-676461.html
文章来源地址https://www.toymoban.com/news/detail-676461.html
贴一段正确配置的Nginx.conf代码
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;
}
}
}
到了这里,关于win下 Nginx.conf 路径配置注意事项(win)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!