Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alternate-mdx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Trust and Identity Incubator
alternate-mdx
Commits
6f372e72
Commit
6f372e72
authored
3 years ago
by
Martin van Es
Browse files
Options
Downloads
Patches
Plain Diff
Add uwsgi support
parent
acd53d70
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
mdproxy.ini
+6
-0
6 additions, 0 deletions
mdproxy.ini
mdproxy.py
+2
-0
2 additions, 0 deletions
mdproxy.py
mdsigner.ini
+6
-0
6 additions, 0 deletions
mdsigner.ini
mdsigner.py
+2
-0
2 additions, 0 deletions
mdsigner.py
requirements.txt
+1
-0
1 addition, 0 deletions
requirements.txt
with
17 additions
and
0 deletions
mdproxy.ini
0 → 100644
+
6
−
0
View file @
6f372e72
[uwsgi]
http
=
:5002
wsgi-file
=
mdproxy.py
single-interpreter
=
true
enable-threads
=
true
master
=
true
This diff is collapsed.
Click to expand it.
mdproxy.py
+
2
−
0
View file @
6f372e72
...
...
@@ -153,3 +153,5 @@ def serve_one(realm, eid):
if
__name__
==
"
__main__
"
:
app
.
run
(
host
=
'
127.0.0.1
'
,
port
=
5002
,
debug
=
False
)
application
=
app
This diff is collapsed.
Click to expand it.
mdsigner.ini
0 → 100644
+
6
−
0
View file @
6f372e72
[uwsgi]
http
=
:5001
wsgi-file
=
mdsigner.py
single-interpreter
=
true
enable-threads
=
true
master
=
true
This diff is collapsed.
Click to expand it.
mdsigner.py
+
2
−
0
View file @
6f372e72
...
...
@@ -74,3 +74,5 @@ for realm, values in config.items():
if
__name__
==
"
__main__
"
:
app
.
run
(
host
=
'
127.0.0.1
'
,
port
=
5001
,
debug
=
False
)
application
=
app
This diff is collapsed.
Click to expand it.
requirements.txt
+
1
−
0
View file @
6f372e72
...
...
@@ -9,3 +9,4 @@ pyyaml
pyinotify
pyXMLSecurity
PyKCS11
uwsgi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment