We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e1e12d + 37cb876 commit c9b0364Copy full SHA for c9b0364
nginx/django.conf
@@ -49,8 +49,28 @@ server {
49
location /stats/nginx {
50
stub_status on;
51
}
52
-}
53
+ location = /robots.txt {
54
+ add_header Content-Type text/plain;
55
+ return 200 "User-agent: *\nDisallow: /\n";
56
+ }
57
+
58
+ location = /apple-touch-icon.png {
59
+ alias /var/www/workflow/static/apple-touch-icon.png;
60
+ expires 30d;
61
62
63
+ location = /apple-touch-icon-precomposed.png {
64
+ alias /var/www/workflow/static/apple-touch-icon-precomposed.png;
65
66
67
68
+ location ^~ /.well-known/ {
69
70
+ return 404 'Not found\n';
71
72
73
+}
74
75
server {
76
0 commit comments