Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clowdflows
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alain Shakour
clowdflows
Commits
47bf05a4
Commit
47bf05a4
authored
Apr 09, 2013
by
Janez K
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
popravil wsgi app
parent
ae213069
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
1 deletion
+37
-1
apache/virtualhosts.conf
apache/virtualhosts.conf
+1
-1
apache/wsgi_app.py
apache/wsgi_app.py
+36
-0
No files found.
apache/virtualhosts.conf
View file @
47bf05a4
ServerName
workflows
.
ijs
.
si
WSGIScriptAlias
/ /
srv
/
django
-
projects
/
mothra
/
mothra
/
wsgi
.
py
WSGIScriptAlias
/ /
srv
/
django
-
projects
/
mothra
/
apache
/
wsgi_app
.
py
<
Directory
/
srv
/
django
-
projects
/
mothra
/
apache
>
Order
allow
,
deny
Allow
from
all
...
...
apache/wsgi_app.py
0 → 100755
View file @
47bf05a4
"""
WSGI config for mothra project.
This module contains the WSGI application used by Django's development server
and any production WSGI deployments. It should expose a module-level variable
named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover
this application via the ``WSGI_APPLICATION`` setting.
Usually you will have the standard Django WSGI application here, but it also
might make sense to replace the whole Django WSGI application with a custom one
that later delegates to the Django one. For example, you could introduce WSGI
middleware here, or combine a Django application with an application of another
framework.
"""
import
os
import
sys
import
site
site
.
addsitedir
(
'/srv/django-envs/mothra/lib/python2.7/site-packages'
)
project_path
=
'/srv/django-projects/mothra'
if
project_path
not
in
sys
.
path
:
sys
.
path
.
append
(
project_path
)
os
.
environ
[
"DJANGO_SETTINGS_MODULE"
]
=
"mothra.settings"
# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
# setting points here.
from
django.core.wsgi
import
get_wsgi_application
application
=
get_wsgi_application
()
# Apply WSGI middleware here.
# from helloworld.wsgi import HelloWorldApplication
# application = HelloWorldApplication(application)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment