qinling/runtimes/python2/custom-entrypoint.sh
Hunt Xu 30fcd00be4 python2-runtime: limit cglimit listen on localhost only
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
2018-07-12 16:02:01 +08:00

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