Actions
Task #31
openRedirect Redmine home to home-lab project
Start date:
04/30/2025
Due date:
% Done:
0%
Estimated time:
Description
Since we only have one project, home-lab, redirect Redmine's home to https://homelab.refol.us/projects/home-lab. Do the same for the Projects page.
Updated by Frank Refol 6 months ago
Use the following redirect in the NGINX homelab.refol.us site config located in the reverse proxy servers:
location = / {
rewrite ^/(.*)$ https://homelab.refol.us/projects/home-lab permanent;
}
location = /projects {
rewrite ^/projects$ https://homelab.refol.us/projects/home-lab permanent;
}
Actions