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

http to https redirection #169

Open
bc-bjoern opened this issue Dec 6, 2017 · 0 comments
Open

http to https redirection #169

bc-bjoern opened this issue Dec 6, 2017 · 0 comments

Comments

@bc-bjoern
Copy link

Hello,

is it possible to redirect from http to https like the following this?

sub vcl_recv {
    if (client.ip != "127.0.0.1" && req.http.host ~ "foobar.com") {
       set req.http.x-redir = "https://foobar.com" + req.url;
       return(synth(850, ""));
    }
}

sub vcl_synth {
    if (resp.status == 850) {
       set resp.http.Location = req.http.x-redir;
       set resp.status = 301;
       return (deliver);
    }
}

Thanks!

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