Move external submodules to /lib
This commit is contained in:
parent
c129f45151
commit
e1594d3766
5 changed files with 19 additions and 19 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -1,9 +1,9 @@
|
|||
[submodule "static/bs"]
|
||||
path = static/bs
|
||||
path = lib/bs
|
||||
url = https://github.com/twbs/bootstrap
|
||||
[submodule "static/fa"]
|
||||
path = static/fa
|
||||
path = lib/fa
|
||||
url = https://github.com/FortAwesome/Font-Awesome
|
||||
[submodule "static/jq"]
|
||||
path = static/jq
|
||||
path = lib/jq
|
||||
url = https://github.com/jquery/jquery
|
||||
|
|
|
@ -16,11 +16,11 @@ server {
|
|||
}
|
||||
|
||||
location /fa/ {
|
||||
root /opt/vpnmanager/static/;
|
||||
root /opt/vpnmanager/lib/;
|
||||
}
|
||||
|
||||
location /bs/ {
|
||||
root /opt/vpnmanager/static/;
|
||||
root /opt/vpnmanager/lib/;
|
||||
}
|
||||
|
||||
location /css/ {
|
||||
|
@ -28,7 +28,7 @@ server {
|
|||
}
|
||||
|
||||
location /jq/ {
|
||||
root /opt/vpnmanager/static/;
|
||||
root /opt/vpnmanager/lib/;
|
||||
}
|
||||
|
||||
location / {
|
||||
|
|
Loading…
Reference in a new issue