AntCMS/configs/nginx.conf
Belle Aerni 91395db9c4 Added robots.txt plugin
Automatically generates the content, including the correct link to the sitemap.
2023-01-14 00:30:29 -08:00

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;
}