Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions redmine.subdomain.conf.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## 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;
Comment on lines +13 to +14
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably shouldn't be here.


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