├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── config.ini.example ├── fanza ├── config.toml ├── iKOA ├── iKOA_32位 ├── rclone-exclude-file.txt ├── rclone_1.conf ├── rclone_2.conf ├── rclone_3.conf.temp └── rclone_4.conf ├── gunicorn.conf.py ├── loadini.py ├── requirements.txt ├── start.py ├── start.sh ├── static ├── css │ ├── index.css │ └── login.css └── js │ └── index.js ├── task.sh ├── templates ├── index.html └── login.html ├── tests.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/app.py -------------------------------------------------------------------------------- /config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/config.ini.example -------------------------------------------------------------------------------- /fanza/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/fanza/config.toml -------------------------------------------------------------------------------- /fanza/iKOA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/fanza/iKOA -------------------------------------------------------------------------------- /fanza/iKOA_32位: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/fanza/iKOA_32位 -------------------------------------------------------------------------------- /fanza/rclone-exclude-file.txt: -------------------------------------------------------------------------------- 1 | *.log -------------------------------------------------------------------------------- /fanza/rclone_1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/fanza/rclone_1.conf -------------------------------------------------------------------------------- /fanza/rclone_2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/fanza/rclone_2.conf -------------------------------------------------------------------------------- /fanza/rclone_3.conf.temp: -------------------------------------------------------------------------------- 1 | [DRIVE] -------------------------------------------------------------------------------- /fanza/rclone_4.conf: -------------------------------------------------------------------------------- 1 | [DRIVE] -------------------------------------------------------------------------------- /gunicorn.conf.py: -------------------------------------------------------------------------------- 1 | forwarded_allow_ips = '*' 2 | secure_scheme_headers = {'X-FORWARDED-PROTO': 'http', } 3 | -------------------------------------------------------------------------------- /loadini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/loadini.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/start.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/start.sh -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/static/css/login.css -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/static/js/index.js -------------------------------------------------------------------------------- /task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/task.sh -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/templates/login.html -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horryruo/ikoa-vps/HEAD/tests.py -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- 1 | from app import APP as application 2 | --------------------------------------------------------------------------------