-
Hi, I am trying to access my seafile server from https but i'm stuck. I added the following line to the docker-compose.yml seafile server file:
my caddy config is:
I can access the server using http but when I try to access ussing https I receive the error :
Can you help me? I want to allow only https connection. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi, you cannot specify an IP address in the |
Beta Was this translation helpful? Give feedback.
-
Hi, I added the server local IP address to the I followed the example that you provided here and successfully accessed the Seahub from internet but cannot access it directly from the local network. |
Beta Was this translation helpful? Give feedback.
Hi, you cannot specify an IP address in the
VIRTUAL_HOST
parameter. A reverse proxy works with HTTP/HTTPS, meaning OSI Layer 7 (Application). IP is situated in OSI Layer 3 (Network). In this layer, we use routers to "change the direction" of traffic. So try to remove the IP address and see if it works.