mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-07-31 03:50:41 -07:00
26 lines
549 B
Text
26 lines
549 B
Text
## Version 2021/05/21
|
|
# Ensure your DNS has a CNAME set for mealie and that mealie container is not using a base URL.
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name mealie.*;
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
client_max_body_size 0;
|
|
|
|
location / {
|
|
|
|
include /config/nginx/proxy.conf;
|
|
include /config/nginx/resolver.conf;
|
|
set $upstream_app mealie;
|
|
set $upstream_port 80;
|
|
set $upstream_proto http;
|
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
|
|
|
}
|
|
|
|
|
|
}
|