diff --git a/roles/taskotron/resultsdb-frontend/templates/rdb-settings.py.j2 b/roles/taskotron/resultsdb-frontend/templates/rdb-settings.py.j2
deleted file mode 100644
index 5db81eec41..0000000000
--- a/roles/taskotron/resultsdb-frontend/templates/rdb-settings.py.j2
+++ /dev/null
@@ -1,6 +0,0 @@
-SECRET_KEY = '{{ resultsdb_secret_key }}'
-SQLALCHEMY_DATABASE_URI = 'postgresql+psycopg2://{{ resultsdb_db_user }}:{{ resultsdb_db_password }}@{{ resultsdb_db_host }}:{{ resultsdb_db_port }}/{{ resultsdb_db_name }}'
-FILE_LOGGING = False
-LOGFILR = '/var/log/resultsdb/resultsdb.log'
-SYSLOG_LOGGING = False
-STREAM_LOGGING = True
diff --git a/roles/taskotron/resultsdb-frontend/templates/resultsdb.conf.j2 b/roles/taskotron/resultsdb-frontend/templates/resultsdb.conf.j2
deleted file mode 100644
index 675bf804cc..0000000000
--- a/roles/taskotron/resultsdb-frontend/templates/resultsdb.conf.j2
+++ /dev/null
@@ -1,30 +0,0 @@
-WSGIDaemonProcess resultsdb user=apache group=apache threads=5
-WSGIScriptAlias {{ resultsdb_endpoint }} /usr/share/resultsdb/resultsdb.wsgi
-WSGISocketPrefix run/wsgi
-
-# this isn't the best way to force SSL but it works for now
-#RewriteEngine On
-#RewriteCond %{HTTPS} !=on
-#RewriteRule ^/resultsdb/admin/?(.*) https://%{SERVER_NAME}/$1 [R,L]
-
-
- WSGIProcessGroup resultsdb
- WSGIApplicationGroup %{GLOBAL}
- WSGIScriptReloading On
-
- # Apache 2.4
- Require all granted
-
-
- Order allow,deny
- Allow from all
-
-
-
-
-#Alias /resultsdb/static /var/www/resultsdb/resultsdb/static
-
-#
-#Order allow,deny
-#Allow from all
-#
diff --git a/roles/taskotron/resultsdb-frontend/templates/settings.py.j2 b/roles/taskotron/resultsdb-frontend/templates/settings.py.j2
index d619d95305..5a70133800 100644
--- a/roles/taskotron/resultsdb-frontend/templates/settings.py.j2
+++ b/roles/taskotron/resultsdb-frontend/templates/settings.py.j2
@@ -1,8 +1,7 @@
# while you can use this as a template, we recommend that you use the blockerbugs
# cli to generate a config file
-#RDB_URL = 'http://{{ hostname }}/{{ resultsdb_endpoint }}/api/v1.0'
-RDB_URL = 'http://localhost/{{ resultsdb_endpoint }}/api/v1.0'
-SECRET_KEY = '{{ resultsdb_fe_secret_key }}'
+RDB_URL = 'http://127.0.0.1/{{ resultsdb_endpoint }}/api/v1.0'
+SECRET_KEY = '{{ resultsdb_frontend_secret_key }}'
FILE_LOGGING = False
LOGFILR = '/var/log/resultsdb_frontend/resultsdb_frontend.log'
SYSLOG_LOGGING = False