2024-08-28, 11:05 PM
So, here is my setup:
I own a domain name. I have the A record pointing to a VPS public IP. From there, I have a Caddyfile that points to my home network's public IP. This always worked just fine on JF but now it isn't. On my domain name, I now get this: https://i.imgur.com/mhN8Z2O.png
It admittedly has been months since I tried to access remotely, and that's how I only just noticed it randomly stopped working. I am puzzled on how to fix this. I have quadruple-checked everything. My DNS record 100% points to the VPS' public IP. I have a Caddyfile at /home on the VPS and then one at /etc/caddy/Caddyfile. The one at /home is simply:
And the one at /etc is:
Any help/ideas?
I own a domain name. I have the A record pointing to a VPS public IP. From there, I have a Caddyfile that points to my home network's public IP. This always worked just fine on JF but now it isn't. On my domain name, I now get this: https://i.imgur.com/mhN8Z2O.png
It admittedly has been months since I tried to access remotely, and that's how I only just noticed it randomly stopped working. I am puzzled on how to fix this. I have quadruple-checked everything. My DNS record 100% points to the VPS' public IP. I have a Caddyfile at /home on the VPS and then one at /etc/caddy/Caddyfile. The one at /home is simply:
Code:
jellyfin.MY_DOMAIN_NAME.com
reverse_proxy HOME_NETWORK_PUBLIC_IP:8096
And the one at /etc is:
Code:
# The Caddyfile is an easy way to configure your Caddy web server.
#
# Unless the file starts with a global options block, the first
# uncommented line is always the address of your site.
#
# To use your own domain name (with automatic HTTPS), first make
# sure your domain's A/AAAA DNS records are properly pointed to
# this machine's public IP, then replace ":80" below with your
# domain name.
jellyfin.MY_DOMAIN_NAME.com {
# Set this path to your site's directory.
root * /usr/share/caddy
# Enable the static file server.
file_server
# Another common task is to set up a reverse proxy:
# reverse_proxy localhost:8080
# Or serve a PHP site through php-fpm:
# php_fastcgi localhost:9000
}
# Refer to the Caddy docs for more information:
# https://caddyserver.com/docs/caddyfile
Any help/ideas?