30fcd00be4
It doesn't make sense to expose the cglimit API to the outside as it is only accessed locally. Limiting it only listen on localhost prevents access from the outside and thus improves the security. Change-Id: I941b7f8c33e5a631bef18df6667423c5bbdbf779
7 lines
276 B
Bash
7 lines
276 B
Bash
#!/usr/bin/env bash
|
|
# This is expected to run as root.
|
|
|
|
uwsgi --http :9090 --uid qinling --wsgi-file server.py --callable app --master --processes 5 --threads 1 &
|
|
|
|
uwsgi --http 127.0.0.1:9092 --uid root --wsgi-file cglimit.py --callable app --master --processes 1 --threads 1
|