91395db9c4
Automatically generates the content, including the correct link to the sitemap.
10 lines
209 B
Nginx Configuration File
10 lines
209 B
Nginx Configuration File
location ~ ^/Themes/[^/]+/Assets/ {
|
|
# If the requested file is an asset, serve it directly
|
|
if (-f $request_filename) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$args;
|
|
}
|