smccloud

Members
  • Posts

    3
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

smccloud's Achievements

Noob

Noob (1/14)

0

Reputation

  1. I get a login screen for it so it somewhat works. No errors in my nginx log though Reading online it can be hard to get working through a reverse proxy. Don't really need it outside the house, just thought it would be fun to do it.
  2. Just set this up today, works great if I access it directly on port 8668, but I want to use the Linuxserver.io letsencrypt container. Does not seem to work correctly behind it. Below is my config for it, any ideas? # make sure that your dns has a cname set for observium and that your observium container is not using a base url server { listen 443 ssl; server_name observium.*; include /config/nginx/ssl.conf; client_max_body_size 0; # enable for ldap auth, fill in ldap details in ldap.conf #include /config/nginx/ldap.conf; location / { # enable the next two lines for http auth # auth_basic "Restricted"; # auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /login; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_observium observium; proxy_pass http://$upstream_observium:8668; } }