bump version to 0.5

This commit is contained in:
Benjamin Dauvergne 2013-11-14 16:54:45 +01:00
parent 8c0b1642b4
commit 80270f1000
5 changed files with 17 additions and 5 deletions

View File

@ -351,7 +351,7 @@ ADMIN_TOOLS_MENU = 'authentic2.menu.CustomMenu'
AUTH_SAML2 = 'AUTH_SAML2' in os.environ
AUTH_OPENID = 'AUTH_OPENID' in os.environ
AUTH_SSL = 'AUTH_SSL' in os.environ
IDP_SAML2 = 'IDP_SAML2' in os.environ
IDP_SAML2 = True
IDP_OPENID = 'IDP_OPENID' in os.environ
IDP_CAS = 'IDP_CAS' in os.environ

View File

@ -40,8 +40,11 @@ case "$1" in
echo Updating static files...
/usr/lib/amue-authentic2/manage.sh collectstatic --noinput
if [ ! -e /etc/nginx/sites-enabled/idp.amue.fr ]; then
echo Installed nginx virtualhost...
ln -s /etc/nginx/sites-availables/idp.amue.fr /etc/nginx/sites-enabled/
echo Installing nginx virtualhost...
ln -s /etc/nginx/sites-available/idp.amue.fr /etc/nginx/sites-enabled/
invoke-rc.d nginx restart
else
echo Reloading nginx virtualhost...
invoke-rc.d nginx reload
fi
echo Restarting amue-authentic...

9
debian/changelog vendored
View File

@ -1,3 +1,12 @@
amue-authentic2 (0.5) stable; urgency=low
* Fix postinst script
* Add python-ldap dependency
* Augment authorized body size in nginx to 200k
* Active SAML 2.0 IdP
-- Benjamin Dauvergne <bdauvergne@dor-lomin.entrouvert.com> Thu, 14 Nov 2013 14:34:58 +0100
amue-authentic2 (0.4) stable; urgency=low
* Add python-gevent to dependencies

2
debian/control vendored
View File

@ -11,7 +11,7 @@ Package: amue-authentic2
Architecture: all
Depends: ${misc:Depends}, python-authentic2,
dbconfig-common, nginx, gunicorn, supervisor, ${python:Depends},
python-memcache, python-psycopg2, python-gevent
python-memcache, python-psycopg2, python-gevent, python-ldap
Recommends: postgresql-client
Description: AMUE settings for the Authentic2 identity server
Gather all needed settings for using Authentic2 at AMUE

View File

@ -9,7 +9,7 @@ server {
location / {
proxy_pass http://unix:/run/amue-authentic2.sock:/;
client_max_body_size 5k;
client_max_body_size 200k;
client_body_buffer_size 1m;
proxy_intercept_errors on;
proxy_buffering on;