-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
24 lines (20 loc) · 853 Bytes
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Aomebo Framework Ajax Requests
location /ajax {
try_files $uri $uri/ index.php?mode=ajax&$args /index.php?mode=ajax&$args;
}
# Aomebo Framework Associatives JavaScript
location ~ associatives\.js {
try_files $uri $uri/ index.php?mode=associatives&at=js&$args /index.php?mode=associatives&at=js&$args;
}
# Aomebo Framework Associatives CSS
location ~ associatives\.css {
try_files $uri $uri/ index.php?mode=associatives&at=js&$args /index.php?mode=associatives&at=css&$args;
}
# Aomebo Framework Dependencies JavaScript
location ~ dependencies\.js {
try_files $uri $uri/ index.php?mode=associatives&at=js&$args /index.php?mode=associatives&at=js&$args;
}
# Aomebo Framework Dependencies CSS
location ~ dependencies\.css {
try_files $uri $uri/ index.php?mode=associatives&at=js&$args /index.php?mode=associatives&at=css&$args;
}