server { listen 0.0.0.0:80; listen 0.0.0.0:443; server_name gwncloud.cn; rewrite ^(.*) https://www.gwncloud.cn$1 permanent; access_log /data/nginx/logs/access_gwn.log access; } 这是什么配置
时间: 2024-04-28 07:20:50 浏览: 85
这是一个 Nginx 的服务器配置文件,它监听了 0.0.0.0:80 和 0.0.0.0:443 两个端口,使用 gwncloud.cn 作为服务器名。当访问该服务器时,它会将所有请求重定向到 https://www.gwncloud.cn,并且将访问日志记录在 /data/nginx/logs/access_gwn.log 文件中。
阅读全文