Created
March 18, 2015 23:29
-
-
Save ajayhn/03bc07af6696d32768d2 to your computer and use it in GitHub Desktop.
setup-keystone-using-apache-modwsgi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo service keystone stop | |
sudo mkdir -p /var/www/cgi-bin/keystone/ | |
( cat | sudo tee /var/www/cgi-bin/keystone/admin /var/www/cgi-bin/keystone/main ) <<EOF | |
import logging | |
import os | |
from paste import deploy | |
from keystone.openstack.common import gettextutils | |
# NOTE(dstanek): gettextutils.enable_lazy() must be called before | |
# gettextutils._() is called to ensure it has the desired lazy #lookup behavior. This includes cases, like keystone.exceptions, #where gettextutils._() is called at import time. | |
gettextutils.enable_lazy() | |
from keystone.common import dependency | |
from keystone.common import environment | |
from keystone.common import sql | |
from keystone import config | |
from keystone.openstack.common import log | |
from keystone import service | |
CONF = config.CONF | |
config.configure() | |
sql.initialize() | |
config.set_default_for_default_log_levels() | |
CONF(project='keystone') | |
config.setup_logging() | |
environment.use_stdlib() | |
name = os.path.basename(__file__) | |
if CONF.debug: | |
CONF.log_opt_values(log.getLogger(CONF.prog), logging.DEBUG) | |
drivers = service.load_backends() | |
# NOTE(ldbragst): 'application' is required in this context by WSGI spec. | |
# The following is a reference to Python Paste Deploy documentation | |
# http://pythonpaste.org/deploy/ | |
application = deploy.loadapp('config:%s' % config.find_paste_config(), | |
name=name) | |
dependency.resolve_future_dependencies() | |
EOF | |
( cat | sudo tee /etc/apache2/ports.conf ) <<EOF | |
Listen 35357 | |
Listen 5000 | |
EOF | |
( cat | sudo tee /etc/apache2/sites-available/keystone-httpd.conf ) <<EOF | |
WSGIDaemonProcess keystone user=keystone group=nogroup processes=3 threads=10 | |
<VirtualHost *:5000> | |
LogLevel info | |
ErrorLog /var/log/keystone/keystone-apache-error.log | |
CustomLog /var/log/keystone/ssl_access.log combined | |
Options +FollowSymLinks | |
#SSLEngine on | |
#SSLCertificateFile /etc/ssl/certs/mycert.pem | |
#SSLCertificateKeyFile /etc/ssl/private/mycert.key | |
#SSLVerifyClient optional | |
#SSLVerifyDepth 10 | |
#SSLProtocol all -SSLv2 | |
#SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW | |
#SSLOptions +StdEnvVars +ExportCertData | |
WSGIScriptAlias / /var/www/cgi-bin/keystone/main | |
WSGIProcessGroup keystone | |
</VirtualHost> | |
<VirtualHost *:35357> | |
LogLevel info | |
ErrorLog /var/log/keystone/keystone-apache-error.log | |
CustomLog /var/log/keystone/ssl_access.log combined | |
Options +FollowSymLinks | |
#SSLEngine on | |
#SSLCertificateFile /etc/ssl/certs/mycert.pem | |
#SSLCertificateKeyFile /etc/ssl/private/mycert.key | |
#SSLVerifyClient optional | |
#SSLVerifyDepth 10 | |
#SSLProtocol all -SSLv2 | |
#SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW | |
#SSLOptions +StdEnvVars +ExportCertData | |
WSGIScriptAlias / /var/www/cgi-bin/keystone/main | |
WSGIProcessGroup keystone | |
</VirtualHost> | |
<VirtualHost *:35357> | |
LogLevel info | |
ErrorLog /var/log/keystone/keystone-apache-error.log | |
CustomLog /var/log/keystone/ssl_access.log combined | |
Options +FollowSymLinks | |
#SSLEngine on | |
#SSLCertificateFile /etc/ssl/certs/mycert.pem | |
#SSLCertificateKeyFile /etc/ssl/private/mycert.key | |
#SSLVerifyClient optional | |
#SSLVerifyDepth 10 | |
#SSLProtocol all -SSLv2 | |
#SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW | |
#SSLOptions +StdEnvVars +ExportCertData | |
WSGIScriptAlias / /var/www/cgi-bin/keystone/admin | |
WSGIProcessGroup keystone | |
</VirtualHost> | |
EOF | |
sudo a2ensite keystone-httpd.conf | |
sudo service apache2 reload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment