Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dies on endless redirect #135

Open
vstkl opened this issue Jun 17, 2023 · 0 comments
Open

Dies on endless redirect #135

vstkl opened this issue Jun 17, 2023 · 0 comments

Comments

@vstkl
Copy link

vstkl commented Jun 17, 2023

Given this configuration(keep in mind I am pretty new to the world of networking):

    listen 80 default_server;
    listen [::]:80 default_server;

    server_name _;

    return 301 https://$host$request_uri;
}

server {
    listen 443 ssl http2 default_server;
    listen [::]:443 ssl http2 default_server;

    server_name _;

        ssl_certificate     /etc/ssl/cert.pem;
        ssl_certificate_key /etc/ssl/key.pem;

    # Other SSL configuration options
        ssl on;

        location / {
                proxy_pass https://$request_uri;
        }
}```

gixy just runs until it runs out of memory.
I know it's mainly my issue, but maybe limit of redirects would be a good idea.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant