We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
建议增加伪装站http自动重定向到https,更符合现代网站的安全要求。 #24
server { listen 127.0.0.1:80; server_name $your_domain; root /usr/share/nginx/html; index index.php index.html index.htm; } server { listen 0.0.0.0:80; listen [::]:80; server_name _; return 301 https://$your_domain\$request_uri; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
建议增加伪装站http自动重定向到https,更符合现代网站的安全要求。 #24
The text was updated successfully, but these errors were encountered: