1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Description: preserve javascript-common path
Author: Xavier Guimard <x.guimard@free.fr>
Forwarded: not-needed
Last-Update: 2018-10-30
--- a/_example/etc/manager-nginx.conf
+++ b/_example/etc/manager-nginx.conf
@@ -60,8 +60,8 @@
# DEBIAN
# If install was made with USEDEBIANLIBS (official releases), uncomment this
- #location /javascript/ {
- # alias /usr/share/javascript/;
- #}
+ location /javascript/ {
+ alias /usr/share/javascript/;
+ }
}
--- a/_example/etc/portal-nginx.conf
+++ b/_example/etc/portal-nginx.conf
@@ -105,7 +105,7 @@
# DEBIAN
# If install was made with USEDEBIANLIBS (official releases), uncomment this
- #location /javascript/ {
- # alias /usr/share/javascript/;
- #}
+ location /javascript/ {
+ alias /usr/share/javascript/;
+ }
}
|