-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
844dd32
commit 2a9734c
Showing
2 changed files
with
2,900 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
server | ||
{ | ||
listen 80; | ||
underscores_in_headers on; | ||
server { | ||
listen 80; | ||
underscores_in_headers on; | ||
|
||
location /sample-ui | ||
{ | ||
root /var/web; | ||
index index.html index.htm; | ||
try_files $uri $uri/ /sample-ui/index.html; | ||
} | ||
} | ||
location /sample-ui { | ||
root /var/web; | ||
index index.html index.htm; | ||
try_files $uri $uri/ /sample-ui/index.html; | ||
} | ||
|
||
location /mz||pg/sample-ui { | ||
rewrite ^/mz\|\|pg/sample-ui(.*)$ /sample-ui$1 break; | ||
} | ||
} |
Oops, something went wrong.