除root以外的所有端点都重定向到HTTPS

时间:2018-09-05 19:55:23

标签: ruby-on-rails ssl nginx https certbot

我的地址是ratwires.space。以下配置可正确启用:https://ratwires.spacehttps://www.ratwires.spacehttp://www.ratwires.space并将http://www.ratwires.space重定向到https://www.ratwires.space,但是不会将http://ratwires.space重定向到{{1 }}。

这是针对Unicorn在8080端口上运行的Rails应用程序的。我添加了当前的HTTPS支持,方法是使用certbot,然后对其进行调整,直到至少大多数域都起作用为止。 https://ratwires.space/etc/letsencrypt/live/ratwires.space-0002/*.ratwires.space的证书。

下面的配置来自各种示例,我真的不知道我在这里做什么。

ratwires.space

2 个答案:

答案 0 :(得分:0)

当然不是,事实上,它的外观却相反:

if ($host = ratwires.space) {
    return 301 http://$host$request_uri;
}

答案 1 :(得分:0)

这不是理想的解决方案,因为在实践中它会重定向两次,但对所有域都适用:

worker_processes 1;
user root root; # for systems with a "nogroup"
pid /var/run/nginx.pid;
error_log /var/log/nginx.error.log;

events {
  worker_connections 1024; # increase if you have lots of clients
  accept_mutex off; # "on" if nginx worker_processes > 1
  use epoll; # enable for Linux 2.6+

}

http {
  include mime.types;
  default_type application/octet-stream;
  access_log /var/log/nginx.access.log combined;
  sendfile on;
  tcp_nopush on; # off may be better for *some* Comet/long-poll stuff
  tcp_nodelay off; # on may be better for some Comet/long-poll stuff

  gzip on;
  gzip_http_version 1.0;
  gzip_proxied any;
  gzip_min_length 500;
  gzip_disable "MSIE [1-6]\.";
  gzip_types text/plain text/html text/xml text/css
             text/comma-separated-values
             text/javascript application/x-javascript
             application/atom+xml;

  upstream app_server {
    server unix:/root/Ratwires/shared/sockets/unicorn.sock fail_timeout=0;
  }

  server {
    client_max_body_size 4G;
    server_name *.ratwires.space;
    keepalive_timeout 5;
    root /root/Ratwires/public;
    try_files $uri/index.html $uri.html $uri @app;
    location @app {
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header X-Forwarded-Proto $scheme;
      proxy_set_header Host $http_host;
      proxy_redirect off;
      proxy_pass http://localhost:8080;
    error_page 500 502 503 504 /500.html;
    location = /500.html {
      root /root/Ratwires/public;
    }
    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/ratwires.space-0002/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/ratwires.space-0002/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

}

  server {
    return 301 https://$host$request_uri;
    listen 80 default deferred;
    server_name *.ratwires.space;
    return 404; # managed by Certbot

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/ratwires.space-0002/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/ratwires.space-0002/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}