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
2
2
3
- In order of importance, somewhat..
4
-
5
- - Nginx config output:
6
- - Redirection host preserve path nginx configuration
7
3
- Dashboard stats are caching instead of querying
4
+
5
+ Next version:
6
+
8
7
- UI Log tail
9
- - Custom Nginx Config Editor
10
8
- Enable/Disable a config
11
9
12
10
Testing:
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ server {
15
15
___location / {
16
16
{% include "_forced_ssl.conf" %}
17
17
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 %}
19
23
}
20
24
}
You can’t perform that action at this time.
0 commit comments