diff --git a/README.rst b/README.rst
index ab5160e..ee3ac2d 100644
--- a/README.rst
+++ b/README.rst
@@ -78,4 +78,4 @@ Get it running
     ./runserver.py --profile
 
 
-This will launch the application at http://0.0.0.0:5000 or http://localhost:5000
+This will launch the application at http://127.0.0.1:5000
diff --git a/runserver.py b/runserver.py
index 786da23..ad6774a 100755
--- a/runserver.py
+++ b/runserver.py
@@ -43,4 +43,4 @@ if args.config:
     os.environ['PAGURE_CONFIG'] = config
 
 APP.debug = True
-APP.run(host='0.0.0.0', port=int(args.port))
+APP.run(host='127.0.0.1', port=int(args.port))