• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

Chevereto w/Swag

aiernt

Chevereto Member
I'm currently running SWAG reverse proxy on my unraid server successfully with OMBI and NextCloud. I'm trying to setup Chevereto but I must be doing something wrong because I cannot get it to work. I know the default port is 80 and I changed that to a different port. If I have SSL enabled in the config I'm getting 502 bad gateway in chrome. When I turn SSL off, it's just going to the default unraid webserver message.

This is my config:
server {
#listen 443 ssl;
#listen [::]:443 ssl;

server_name chevereto.*;

#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 chevereto;
set $upstream_port 14500;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;

}
}
 
Back
Top