- # Disable access to sensitive files in app path
- location ~ /(app|content|lib|importer)/.*.(po|php|lock|sql|txt)$ {
- deny all;
- }
-
- # Enable CORS header (needed for CDN)
- location ~* .(ttf|ttc|otf|eot|woff|woff2|css|js)$ {
- add_header Access-Control-Allow-Origin "*";
- }
-
- # Force serve upload path as static content (match your upload folder if needed)
- location /images {}
-
- # Route dynamic request to index.php
- location / {
- try_files $uri $uri/ /index.php$is_args$query_string;
- }
复制代码
|