7

是否可以在不为所有 100 条路由/防火墙规则定义的情况下为整个应用程序强制使用 https?

我们尝试在网络服务器级别强制使用 https,但 symfony2 仍然尝试重定向到 http 并生成一些奇怪的链接 (http://[...]:443)。

我阅读了配置文档,但没有找到任何相关信息。所有说明书条目也仅用于根据路由/安全规则启用它。

4

4 回答 4

0

看来我们错误地配置了我们的网络服务器。作为参考,这里是现在工作的配置:

    server {
            listen x.x.x.x:80;
            server_name domain.tld;
            listen      80;

            location / {
                    rewrite     ^(.*)   https://domain.tld$1 permanent;
            }
    }

    server {
            gzip                on;
            gzip_types          text/plain text/css application/x-javascript text/xml application/xml application/rss+xml text/javascript image/x-icon;
            gzip_min_length     1000;
            gzip_comp_level     6;
            gzip_http_version   1.0;
            gzip_vary           on;
            gzip_proxied        expired no-cache no-store private auth;
            gzip_disable        msie6;

            listen x.x.x.x:443;

            ssl         on;
            ssl_certificate     /etc/nginx/wildcard_ssl/cert.pem;
            ssl_certificate_key /etc/nginx/wildcard_ssl/cert.key;

            server_name domain.tld;

            root /var/www/domain.tld/current/web/;

            access_log /var/log/nginx/domain.tld/access.log main;
            error_log /var/log/nginx/domain.tld/error.log;

            rewrite ^/app\.php/?(.*)$ /$1 permanent;

            location / {
                    index app.php;
                    try_files $uri @rewriteapp;
            }
            location @rewriteapp {
                    rewrite ^(.*)$ /app.php/$1 last;
            }

            location @long_time {
                    fastcgi_pass   tldpass;
                    fastcgi_split_path_info ^(.+\.php)(/.*)$;
                    include fastcgi_params;
                    fastcgi_param  SCRIPT_FILENAME    $document_root/app.php;
                    fastcgi_param  HTTPS              on;

                    fastcgi_read_timeout 300;
            }
            location ~ ^/app\.php(/|$) {
                    include fastcgi_params;
                    fastcgi_pass   tldpass;
                    fastcgi_split_path_info ^(.+\.php)(/.*)$;
                    fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
                    fastcgi_param  HTTPS              on;
                    fastcgi_read_timeout 600s;

                    access_log /var/log/nginx/domain.tld/php-only.log;
            }

            location ~* ^.+\.(jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|wav|bmp|rtf|htc)$ {
                    expires     31d;
                    add_header  Cache-Control private;
            }
    }
于 2013-09-17T07:17:21.720 回答
0

如何为不同的 URL 强制使用 HTTPS 或 HTTP

Security 组件提供了一种通过 requires_channel设置强制执行 HTTPs 的方法。这种替代方法更适合保护您网站的“区域”(/admin 下的所有 URL),或者当您想要保护在第三方包中定义的 URL 时。

access_control:
    - path: ^/secure
      roles: ROLE_ADMIN
      requires_channel: https
于 2013-09-16T15:43:29.503 回答
0

使用https://github.com/nelmio/NelmioSecurityBundle强制整个应用程序仅处理 ssl 请求

nelmio_security:
    forced_ssl: ~

让路由器https默认生成url:

parameters:
    router.request_context.scheme: 'https'
于 2019-07-29T15:08:01.507 回答
0

在 security.yaml 上

access_control:
    - { path: ^/, requires_channel: https, host: ^www\.domain\.com$ }
于 2018-12-15T00:59:10.163 回答