├── README.md ├── libs ├── __init__.py ├── log.py ├── loki.py ├── redisoj.py ├── storage.py └── utils.py ├── nginx ├── __init__.py ├── libs │ ├── __init__.py │ ├── conf.py │ ├── domains.py │ ├── global_id.py │ ├── link.sh │ ├── mysqloj.py │ ├── template.py │ └── upstream.py ├── template │ ├── server.conf │ └── upstream.conf └── web │ ├── __init__.py │ └── service.py ├── restart.sh ├── start.sh ├── stop.sh └── web ├── __init__.py ├── const.py └── main_service.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/README.md -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/libs/log.py -------------------------------------------------------------------------------- /libs/loki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/libs/loki.py -------------------------------------------------------------------------------- /libs/redisoj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/libs/redisoj.py -------------------------------------------------------------------------------- /libs/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/libs/storage.py -------------------------------------------------------------------------------- /libs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/libs/utils.py -------------------------------------------------------------------------------- /nginx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/libs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/libs/conf.py -------------------------------------------------------------------------------- /nginx/libs/domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/libs/domains.py -------------------------------------------------------------------------------- /nginx/libs/global_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/libs/global_id.py -------------------------------------------------------------------------------- /nginx/libs/link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/libs/link.sh -------------------------------------------------------------------------------- /nginx/libs/mysqloj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/libs/mysqloj.py -------------------------------------------------------------------------------- /nginx/libs/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/libs/template.py -------------------------------------------------------------------------------- /nginx/libs/upstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/libs/upstream.py -------------------------------------------------------------------------------- /nginx/template/server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/template/server.conf -------------------------------------------------------------------------------- /nginx/template/upstream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/template/upstream.conf -------------------------------------------------------------------------------- /nginx/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx/web/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/nginx/web/service.py -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/restart.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export PYTHONPATH=. 4 | 5 | nohup python web/main_service.py & 6 | -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/stop.sh -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/web/const.py -------------------------------------------------------------------------------- /web/main_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1528/nginx_conf/HEAD/web/main_service.py --------------------------------------------------------------------------------