gpt4 book ai didi

windows - nginx Windows : setting up sites-available configs

转载 作者:可可西里 更新时间:2023-11-01 12:18:22 24 4
gpt4 key购买 nike

我正在尝试在我的 Windows 开发环境中设置 Nginx。我找不到如何在 Linux 上创建类似于 "sites-enabled" 的东西,Nginx 会在其中寻找(链接到)事件的虚拟主机配置。

有没有一种方法可以对一个带有实际配置文件快捷方式的目录和 Nginx 扫描该目录做类似的事情?或者除了将主机配置复制到 nginx.conf 之外,还有其他连接虚拟主机配置的方法吗?

最佳答案

在 Windows 中,您必须提供配置文件所在目录的完整路径。有两个文件需要更新:nginx.conf,它告诉 nginx 在哪里可以找到网站,以及 localhost.conf,这是一个网站的配置。

假设nginx安装在C:\nginx。如果安装目录在另一个路径,则必须相应地更新该路径,无论它出现在以下两个配置文件中的什么位置。

nginx.conf

位置:C:\nginx\conf

worker_processes  1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#to read external configuration.
include "C:/nginx/conf/sites-enabled/*.conf";
}

本地主机配置文件

位置:C:\nginx\conf\sites-enabled

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;
}
}

关于windows - nginx Windows : setting up sites-available configs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13070986/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com