Compose files, instructions and extras for using my automatic proxy containers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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