• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

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