Compose files, instructions and extras for using my automatic proxy containers
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

redirect-http.conf 190B

12345678910111213
  1. # Redirects all default HTTP traffic to HTTPS.
  2. server {
  3. listen 80 default_server;
  4. listen [::]:80 default_server;
  5. server_name _;
  6. return 301 https://$host$request_uri;
  7. }