Go to file
2017-11-05 22:20:39 +02:00
app create-activate phase 2 2017-11-05 22:20:39 +02:00
docs clean up documentation 2017-09-28 14:10:19 +03:00
.gitignore simplifying schema 2017-06-02 01:27:17 +03:00
babel.cfg simple news crawler from fb 2017-05-25 08:54:33 +03:00
cronexec.sh craete seed function phase 3 2017-08-01 14:21:22 +03:00
manage.py various fixes 2017-10-07 18:39:50 +03:00
README.md daily script 2017-07-25 17:33:23 +03:00
requirements.txt clean up documentation 2017-09-28 14:10:19 +03:00
schedulerd.py initial commit 2017-03-08 20:53:09 +02:00
start.wsgi wsgi 2017-03-09 18:44:20 +02:00

proxadmin

web panel for proxmaster built with Flask

setup db backend:

  1. apt-get install postgresql postgresql-contrib libpq-dev
  2. sudo -i -u postgres psql
  3. create user proxadmin with password 'mypassword';
  4. create database proxadmin owner proxadmin encoding 'utf-8';

setup panel:

  1. adduser proxadmin
  2. cd /home/proxadmin
  3. virtualenv -p python3 appserver
  4. cd appserver
  5. git clone git://github.com/kanaka/noVNC
  6. git clone https://deflax@bitbucket.org/deflax/proxmaster-panel.git
  7. source bin/activate
  8. cd proxmaster-panel/ ; pip install -r requirements.txt
  9. python3 manage.py db init ; python3 manage.py db migrate -m "init" ; python3 manage.py db upgrade ; python3 manage.py deploy
  10. chmod +x /home/proxadmin/appserver/proxadmin/cronexec.sh
  11. add "00 09 * * * root /home/proxadmin/appserver/proxadmin/cronexec.sh" to /etc/crontab