mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-07-16 10:03:03 -07:00
They should exist in proxy.conf. Ref: [pullrequestreview-2863663445](https://github.com/linuxserver/reverse-proxy-confs/pull/764#pullrequestreview-2863663445)
28 lines
630 B
Text
28 lines
630 B
Text
## Version 2025/05/04
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name redmine.*;
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
client_max_body_size 0;
|
|
|
|
access_log /var/log/nginx/redmine-access.log;
|
|
error_log /var/log/nginx/redmine-error.log;
|
|
|
|
location / {
|
|
include /config/nginx/proxy.conf;
|
|
include /config/nginx/resolver.conf;
|
|
|
|
set $upstream_app redmine;
|
|
set $upstream_port 3000;
|
|
set $upstream_proto http;
|
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
|
|
|
proxy_set_header Host $http_host;
|
|
client_max_body_size 10m;
|
|
}
|
|
}
|