75c1c5f22a
The current default for auth_strategy is noauth, which is not how it is expected to be set in production environments. Note: Functional tests should be good with noauth. Co-Authored-By: Adam Harwell <flux.adam@gmail.com> Co-Authored-By: Michael Johnson <johnsomor@gmail.com> Change-Id: Ifc80fff06a1d793d7cee0b207af10061784e48db
48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# This is a template Apache2 configuration file for using the
|
|
# Octavia API through mod_wsgi. This version assumes you are
|
|
# running devstack to configure the software.
|
|
|
|
Listen %OCTAVIA_SERVICE_PORT%
|
|
|
|
<VirtualHost *:%OCTAVIA_SERVICE_PORT%>
|
|
|
|
WSGIDaemonProcess octavia-wsgi processes=%APIWORKERS% threads=1 user=%USER% display-name=%{GROUP} %VIRTUALENV%
|
|
WSGIProcessGroup octavia-wsgi
|
|
WSGIScriptAlias / /usr/local/bin/octavia-wsgi
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
|
|
ErrorLog /var/log/%APACHE_NAME%/octavia_error.log
|
|
<IfVersion >= 2.4>
|
|
ErrorLogFormat "%{cu}t %M"
|
|
</IfVersion>
|
|
CustomLog /var/log/%APACHE_NAME%/octavia_access.log combined
|
|
|
|
%SSLENGINE%
|
|
%SSLCERTFILE%
|
|
%SSLKEYFILE%
|
|
|
|
<Directory /usr/local/bin/>
|
|
WSGIProcessGroup octavia-wsgi
|
|
<IfVersion >= 2.4>
|
|
Require all granted
|
|
</IfVersion>
|
|
<IfVersion < 2.4>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfVersion>
|
|
</Directory>
|
|
|
|
</VirtualHost>
|