Go to file
2017-07-21 02:30:09 +03:00
app activate item javascript calculator 2017-07-21 02:30:09 +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
config.py.dist activate item javascript calculator 2017-07-21 02:30:09 +03:00
example.com-le-ssl.conf update docs 2017-05-29 18:59:30 +03:00
example.com.conf update docs 2017-05-29 18:59:30 +03:00
LICENSE simple news crawler from fb 2017-05-25 08:54:33 +03:00
manage.py activate item javascript calculator 2017-07-21 02:30:09 +03:00
README.md remove old nginx vhosts 2017-06-25 17:18:20 +03:00
requirements.txt responsive dashboard tables 2017-06-08 17:42:09 +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 USER
  2. cd /home/USER
  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