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;
}
}
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;
}
}