nginx配置监听本地8081
时间: 2023-10-25 10:19:25 浏览: 153
Nginx配置SSL证书监听443端口
5星 · 资源好评率100%
您可以在 nginx 的配置文件中添加以下内容,让 nginx 监听本地的 8081 端口:
```
server {
listen 8081;
server_name localhost;
location / {
root /path/to/your/web/files;
index index.html;
}
}
```
这样,当您访问 http://localhost:8081 时,nginx 将能够提供您所指定的根目录下的 index.html 文件。您需要将 /path/to/your/web/files 替换为您实际的 Web 根目录。
阅读全文