Siroguh

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Siroguh

  1. Hi,

     

    ¿Anyone knows a working subdomain.conf for this app using the swag docker?

     

    I have 8 more reverse proxies so I think something is weird with this app.

    So far I've used this and isn't working

     

    server {
        listen 443 ssl;
        listen [::]:443 ssl;

        server_name conta.*;

        include /config/nginx/ssl.conf;

        client_max_body_size 0;

        location / {

            include /config/nginx/proxy.conf;
            resolver 127.0.0.11 valid=30s;
            set $upstream_app akaunting;
            set $upstream_port 8083;
            set $upstream_proto http;
            proxy_pass $upstream_proto://$upstream_app:$upstream_port;

        }
    }

     

    Im using port 8083 and conta.* with Cloudflare (with proxy option), just as any other app I have. Also the docker is named "akaunting". I've also tried https instead of http.

     

    Both swag and akaunting are working.