Shamalamadindong

Members
  • Posts

    195
  • Joined

  • Last visited

Posts posted by Shamalamadindong

  1. Bit of an out of the ordinary one. I'm trying to run it in Azure App Service.

     

    - I can pull the container

    - It starts fine

    - I can browse to the guacamole UI just fine

    - jasonbean/guacamole:latest

     

    When I try to login using guacadmin/guacadmin I get Invalid login. I can login using USERNAME/PASSWORD (as defined in user-mapping.xml) but that doesn't get me admin rights.

     

    Anyone have any ideas?

    catalina.out

  2. Hi,

     

    I'm having a little trouble getting Onlyoffice to run. If i keep everything internal, it works perfectly. As soon as i switch everything for external access it stops working and i get a "<insert domain> refused to connect" error

     

    image.png.024102d429bb152f08ac8b921e8a092d.png

     

    Any ideas? I have confirmed that it can reach /web-apps/apps/api/documents/api.js?ver=9.6.4.736

     

    I have both servers running in Docker, didn't mess with any port settings and both are reverse proxy'd through the Linuxserver.io Lets Encrypt container.

  3. On 7/10/2018 at 2:19 PM, cheesemarathon said:

    @Shamalamadindong

    I have just pushed a new update to the oauth2 image, so check for updates for you containers and you should be able to install it. This will grab the two default templates and save them to your oauth2 app data folder in a folder call templates. These will not be used by default. To enable them, edit the oauth2_proxy.cfg file and uncomment line 24:

    
    # custom_templates_dir = "/etc/oauth2/templates/"

    Restart the container and it will then use the html templates. One for the sign in page and one for the error page. The templates are exactly the same as the default login pages but can be modified to look however you want. I'll try to create some different themed pages when I have some more time. Any suggestions?

     

     

    For the templates? A fake FBI login ?

     

    Seriously though great work! I'll have a look at making something for myself this weekend.

     

    Edit: Had a quick look, i think you forgot to generalize the template ;)

  4. I just installed the autofan plugin, are there any instructions somewhere on how to get it working properly? It does pick up 3 fan controllers but if i then click detect it doesn't find anything.

     

    gSfA1

  5. Anyone have a clue why i would be getting this?

     

     

    	location /nowshowing/ {
    		proxy_pass http://internalip:6878;
    		proxy_set_header Host $host:$server_port;
    		proxy_set_header X-Real-IP $remote_addr;
    		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    		proxy_set_header X-Forwarded-Proto https; proxy_redirect http:// $scheme://;
    		proxy_http_version 1.1;
    		proxy_set_header Connection "";
    		proxy_cache_bypass $cookie_session;
    		proxy_no_cache $cookie_session;
    		proxy_buffers 32 4k;
    		proxy_set_header X-Original-URI $request_uri;
    	}

     

    nowshowing.png