diff options
-rwxr-xr-x | pasteme.py | 8 | ||||
-rw-r--r-- | static/robots.txt | 0 |
2 files changed, 8 insertions, 0 deletions
@@ -32,6 +32,14 @@ def route_paste_post(): def route_static(path): return bottle.static_file(path, root='static') +@bottle.route('/favicon.ico') +def route_favicon(path): + return bottle.static_file('favicon.ico', root='static') + +@bottle.route('/robots.txt') +def route_favicon(path): + return bottle.static_file('robots.txt', root='static') + @bottle.route('/<pid>') @bottle.route('/<pid>/<pformat>') def route_paste_get(pid, pformat='colored'): diff --git a/static/robots.txt b/static/robots.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/static/robots.txt |