Skip to content

does anybody have reverse nginx with auth inside radicale working out there? Please share a working config #1447

Discussion options

You must be logged in to vote

Thank you for the trouble of trying to replicate.
I have found the cause in my setup: I was blocking the post method. So I too now can confirm a working config with an nginx reverse proxy.
My conclusion above was wrong!

For future people trying such a setup my config is below.
At the nginx side the config is like this


#agenda server cal.hanscees.con
server {
#    listen 80;
    listen 443 ssl http2;
    server_name cal.hanscees.con;
    ssl_certificate /etc/letsencrypt/live/cal.hanscees.con/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/cal.hanscees.con/privkey.pem;
    location /.well-known/acme-challenge/ {
        root /var/www/certbot;
    }



    location / {
    #add…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by hanscees
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
2 participants
Converted from issue

This discussion was converted from issue #1444 on March 16, 2024 06:55.