Skip to content

Is there a way to hide the WebAdmin page form access from the Internet? #68

Answered by BobWs
BobWs asked this question in Q&A
Discussion options

You must be logged in to vote

I think I solved it!
I'm using NPM as reverse proxy now and there it is possible to
add

location /admin {
  allow 127.0.0.1/8;
  allow 192.168.0.0/24;
  deny all;
}

So now when I go to the admin/page I'm getting a 403 Forbidden page
and caldav.mydomain.com in the ios and android clients just work fine.

Replies: 8 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
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
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 ckulka
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #51 on January 14, 2022 00:03.