仅针对 nginx 上的特定 url 使用 https 重定向

Dig*_*ite 3 apache ssl https nginx http-redirect

我试图让 https 与一些网址一起工作。但似乎 https 无处不在。具体来说,我在 Nginx 上创建了 2 个 vhost。第一个带有 80 端口的虚拟主机和另一个带有 443 端口的包含 SSL 的虚拟主机。现在我的网站 .ie domain.com 适用于 http 和 https,这不是我想要的。我希望 https 处理我在 Nginx vhost 中使用规则指定的一些 url。

主要问题是当我尝试首先使用 http 获取我的主站点,然后当我转到包含 https“secure_area”的 url 时,它工作正常。但是,每当我在我网站的其他地方进行访问时,https 都会继续访问所有其他 url。

这是我的 443 vhost 配置:

ssl_session_cache 共享:SSL:5m;add_header Strict-Transport-Security "max-age=31536000; includeSubDomains";

server {
        listen 443 ssl spdy;
        listen [::]:443 ssl spdy;
        #server_name www.mydomain.com;

        ssl_session_timeout 5m;
        root /vars/www/public_html/;
        index index.php index.html index.htm;
        ssl_certificate /path_to_ssl/certificate.pem;
        ssl_certificate_key /path_to_key/server.key;
        ssl_ciphers 'ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS';
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;

        location / {
        try_files $uri $uri/ /index.php;
        }

         location ~ \.php$ {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host $host;
        proxy_pass http://127.0.0.1:8080;
         }

         location ~ /\.ht {
                deny all;
        }

        # Serve static files directly
        location ~* \.(png|jpe?g|gif|ico)$ {
                expires 1y; access_log off; try_files $uri $uri/ @rewrite; gzip off;
        }
        location ~* \.(css)$ {
                expires 1d; access_log off;
        }
        location ~* \.(js)$ {
                expires 1h; access_log off;
        }
        location /secure_area/ {
        auth_basic            "Restricted";
        auth_basic_user_file  htpasswd;
        rewrite ^ https://$http_host$request_uri? permanent;
        }


    }
Run Code Online (Sandbox Code Playgroud)

这是我的 80 虚拟主机配置:

server {
        listen 80 default_server;
        server_name mydomain.com;
        return 301 http://www.mydomain.com;
}

server {
        listen 80;
        server_name www.mydomain.com;
        root /vars/www/public_html/;
        index index.php index.html index.htm;

        location / {
        try_files $uri $uri/ /index.php;
        }
         location ~ \.php$ {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host $host;
        proxy_pass http://127.0.0.1:8080;
         }
         location ~ /\.ht {
                deny all;
        }

            location /secure_area/ {
        rewrite ^ https://$http_host$request_uri? permanent;
        }

    }
Run Code Online (Sandbox Code Playgroud)

万一没有人注意到,Nginx 在前端 Apache 中作为反向代理工作

现在有没有人知道如何仅在某些网址上强制使用 https,在我的情况下是 secure_area 并在所有其他 url 上强制使用 http?

谢谢

Moh*_*ady 5

http如果访问了任何其他 URL,您可以告诉 SSL 服务器重定向回

server {
  listen 80;
  server_name example.com;
  # normal http settings
  location /secure_area/ {
    return 301 https://$http_host$request_uri$is_args$query_string;
  }
}
server {
  listen 443 ssl spdy;
  server_name example.com;
  # ssl settings;
  location /secure_area/ {
    #serve secure area content
  }
  location / {
    return 301 http://$http_host$request_uri$is_args$query_string;
  }
}
Run Code Online (Sandbox Code Playgroud)