Update the bodhi configs for the recent client/server split.

This commit is contained in:
Randy Barlow 2016-09-10 18:26:52 +00:00
parent cfef145211
commit 2f0318e11d
3 changed files with 11 additions and 11 deletions

View file

@ -1,4 +1,4 @@
Alias /static /usr/lib/python2.7/site-packages/bodhi/static/ Alias /static /usr/lib/python2.7/site-packages/bodhi/server/static/
<FilesMatch ".(eot|ttf|otf|woff)"> <FilesMatch ".(eot|ttf|otf|woff)">
# modern browsers require that fonts have this # modern browsers require that fonts have this

View file

@ -4,7 +4,7 @@ prefix = /
scheme = https scheme = https
[app:main] [app:main]
use = egg:bodhi use = egg:bodhi-server
filter-with = proxy-prefix filter-with = proxy-prefix
# Release status # Release status
@ -393,7 +393,7 @@ updateinfo_rights = Copyright (C) 2015 Red Hat, Inc. and others.
## ##
# pyramid.openid # pyramid.openid
openid.success_callback = bodhi.security:remember_me openid.success_callback = bodhi.server.security:remember_me
openid.provider = https://id.fedoraproject.org/openid/ openid.provider = https://id.fedoraproject.org/openid/
openid.url = https://id.fedoraproject.org/ openid.url = https://id.fedoraproject.org/
openid_template = {username}.id.fedoraproject.org openid_template = {username}.id.fedoraproject.org
@ -429,7 +429,7 @@ sqlalchemy.url = postgresql://bodhi2:{{ bodhi2Password }}@db-bodhi/bodhi2
## ##
## Templates ## Templates
## ##
mako.directories = bodhi:templates mako.directories = bodhi:server/templates
## ##
## Authentication & Sessions ## Authentication & Sessions
@ -458,8 +458,8 @@ host = 0.0.0.0
port = 6543 port = 6543
[pshell] [pshell]
m = bodhi.models m = bodhi.server.models
#db = bodhi.models.DBSession #db = bodhi.server.models.DBSession
t = transaction t = transaction
# Begin logging configuration # Begin logging configuration

View file

@ -4,7 +4,7 @@ prefix = /
scheme = https scheme = https
[app:main] [app:main]
use = egg:bodhi use = egg:bodhi-server
filter-with = proxy-prefix filter-with = proxy-prefix
## ##
@ -366,7 +366,7 @@ updateinfo_rights = Copyright (C) 2015 Red Hat, Inc. and others.
## ##
# pyramid.openid # pyramid.openid
openid.success_callback = bodhi.security:remember_me openid.success_callback = bodhi.server.security:remember_me
openid.provider = https://id.stg.fedoraproject.org/openid/ openid.provider = https://id.stg.fedoraproject.org/openid/
openid.url = https://id.stg.fedoraproject.org/ openid.url = https://id.stg.fedoraproject.org/
openid_template = {username}.id.fedoraproject.org openid_template = {username}.id.fedoraproject.org
@ -402,7 +402,7 @@ sqlalchemy.url = postgresql://bodhi2:{{ bodhi2PasswordSTG }}@db-bodhi/bodhi2
## ##
## Templates ## Templates
## ##
mako.directories = bodhi:templates mako.directories = bodhi:server/templates
## ##
## Authentication & Sessions ## Authentication & Sessions
@ -432,8 +432,8 @@ port = 6543
[pshell] [pshell]
m = bodhi.models m = bodhi.server.models
db = bodhi.models.DBSession db = bodhi.server.models.DBSession
t = transaction t = transaction
# Begin logging configuration # Begin logging configuration