| 123456789101112131415161718192021222324 |
- location / {
- try_files $uri $uri/ /index.php?$query_string;
- }
- location /resources/{
- if ($arg_responseContentType = "application/octet-stream") {
- add_header Content-Disposition "attachment";
- }
- if ($arg_responseContentType = "application%2Foctet-stream") {
- add_header Content-Disposition "attachment";
- }
- alias "D:/index/mp_website-dev/resources/upload/";
- }
- location /admin {
- alias "D:/index/mp_website_view/dist";
- index index.html;
- }
- location /static/{
- alias "D:/index/mp_website_view/dist/static/";
- }
- location /assets/{
- alias "D:/index/mp_website_view/assets/";
- }
|