feat(docker): Serve a robots.txt file for NO indexing

ref: #756
This commit is contained in:
2025-05-15 03:58:37 +09:30
parent 59b4b5ff39
commit c3109f1894
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,2 @@
User-agent: *
Disallow: /

View File

@ -4,6 +4,10 @@ server {
location = /favicon.ico { access_log off; log_not_found off; }
location /robots.txt {
alias /app/static/robots.txt;
}
location /static/ {
alias /app/static/;