Add wsgi container file for mod_wsgi

Infra uses apache and mod_wsgi for wsgi app deployments. Put a wsgi
file into the repo so that infra doesn't have to overlay one.

Change-Id: I02e716e1293ca6f9bd04e9d81d5d4d0c474651c7
This commit is contained in:
Monty Taylor 2014-06-08 12:28:19 -04:00
parent 7cf7d3bb7d
commit a07c179351

16
dashboard/web.wsgi Normal file
View File

@ -0,0 +1,16 @@
# Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
#
# 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.
from dashboard.web import app as application