File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1- # TODO
1+ # TODO
22
3- In order of importance, somewhat..
4-
5- - Nginx config output:
6- - Redirection host preserve path nginx configuration
73- Dashboard stats are caching instead of querying
4+
5+ Next version:
6+
87- UI Log tail
9- - Custom Nginx Config Editor
108- Enable/Disable a config
119
1210Testing:
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ server {
1515 location / {
1616{% include "_forced_ssl.conf" %}
1717
18- return 301 $scheme://{{ forward_domain_name }}$request_uri;
18+ {% if preserve_path == 1 or preserve_path == true %}
19+ return 301 $scheme://{{ forward_domain_name }}$request_uri$request_uri;
20+ {% else %}
21+ return 301 $scheme://{{ forward_domain_name }}$request_uri;
22+ {% endif %}
1923 }
2024}
You can’t perform that action at this time.
0 commit comments