├── .gitignore ├── LICENSE ├── README.md ├── etc ├── apache2.conf.django ├── apache2.conf.django.auth ├── django-site-apache ├── django-site-nginx ├── hostname ├── hosts ├── interfaces ├── ip6tables.rules.accept.all ├── ip6tables.rules.firewall ├── iptables.rules.accept.all ├── iptables.rules.firewall ├── my.cnf ├── nginx.conf ├── ports.conf └── sshd_config ├── find_replace.example ├── find_replace.sh ├── images ├── avatar.png ├── favicon.ico └── powered-by-django.gif ├── scripts ├── create_secret_key.py ├── db.sql ├── django_projects.pth ├── firewall_down.sh ├── firewall_up.sh ├── ip6tables.sh ├── iptables.sh ├── maintenance_page.html ├── manage.py ├── secrets.py ├── settings_tmp.py ├── site-auth-off.sh ├── site-auth-on.sh ├── site-maintenance.sh ├── site-reload.sh ├── site-up.sh ├── site_auth.py └── tail-logs.sh ├── server_it_works.png ├── setup.sh ├── site_repo ├── .gitignore ├── __init__.py ├── django_add │ ├── __init__.py │ ├── context_processors.py │ ├── middleware.py │ └── readme.txt ├── docs │ └── readme.txt ├── home │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── readme.txt │ ├── tests.py │ └── views.py ├── scripts │ ├── readme.txt │ └── script_example.py ├── settings.py ├── settings_dev.py ├── settings_production.py ├── static │ ├── main.css │ └── main.js ├── templates │ ├── base.html │ └── home_page.html ├── urls.py ├── utils │ ├── __init__.py │ ├── readme.txt │ └── requests.py └── wsgi.py └── user ├── bash_aliases └── id_rsa.pub /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/README.md -------------------------------------------------------------------------------- /etc/apache2.conf.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/apache2.conf.django -------------------------------------------------------------------------------- /etc/apache2.conf.django.auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/apache2.conf.django.auth -------------------------------------------------------------------------------- /etc/django-site-apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/django-site-apache -------------------------------------------------------------------------------- /etc/django-site-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/django-site-nginx -------------------------------------------------------------------------------- /etc/hostname: -------------------------------------------------------------------------------- 1 | # Location: /etc/ 2 | 3 | my-django-server -------------------------------------------------------------------------------- /etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/hosts -------------------------------------------------------------------------------- /etc/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/interfaces -------------------------------------------------------------------------------- /etc/ip6tables.rules.accept.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/ip6tables.rules.accept.all -------------------------------------------------------------------------------- /etc/ip6tables.rules.firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/ip6tables.rules.firewall -------------------------------------------------------------------------------- /etc/iptables.rules.accept.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/iptables.rules.accept.all -------------------------------------------------------------------------------- /etc/iptables.rules.firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/iptables.rules.firewall -------------------------------------------------------------------------------- /etc/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/my.cnf -------------------------------------------------------------------------------- /etc/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/nginx.conf -------------------------------------------------------------------------------- /etc/ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/ports.conf -------------------------------------------------------------------------------- /etc/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/etc/sshd_config -------------------------------------------------------------------------------- /find_replace.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/find_replace.example -------------------------------------------------------------------------------- /find_replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/find_replace.sh -------------------------------------------------------------------------------- /images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/images/avatar.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/powered-by-django.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/images/powered-by-django.gif -------------------------------------------------------------------------------- /scripts/create_secret_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/create_secret_key.py -------------------------------------------------------------------------------- /scripts/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/db.sql -------------------------------------------------------------------------------- /scripts/django_projects.pth: -------------------------------------------------------------------------------- 1 | /home/django/mysite/ 2 | -------------------------------------------------------------------------------- /scripts/firewall_down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/firewall_down.sh -------------------------------------------------------------------------------- /scripts/firewall_up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/firewall_up.sh -------------------------------------------------------------------------------- /scripts/ip6tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/ip6tables.sh -------------------------------------------------------------------------------- /scripts/iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/iptables.sh -------------------------------------------------------------------------------- /scripts/maintenance_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/maintenance_page.html -------------------------------------------------------------------------------- /scripts/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/manage.py -------------------------------------------------------------------------------- /scripts/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/secrets.py -------------------------------------------------------------------------------- /scripts/settings_tmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/settings_tmp.py -------------------------------------------------------------------------------- /scripts/site-auth-off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/site-auth-off.sh -------------------------------------------------------------------------------- /scripts/site-auth-on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/site-auth-on.sh -------------------------------------------------------------------------------- /scripts/site-maintenance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/site-maintenance.sh -------------------------------------------------------------------------------- /scripts/site-reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/site-reload.sh -------------------------------------------------------------------------------- /scripts/site-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/site-up.sh -------------------------------------------------------------------------------- /scripts/site_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/site_auth.py -------------------------------------------------------------------------------- /scripts/tail-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/scripts/tail-logs.sh -------------------------------------------------------------------------------- /server_it_works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/server_it_works.png -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/setup.sh -------------------------------------------------------------------------------- /site_repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/.gitignore -------------------------------------------------------------------------------- /site_repo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site_repo/django_add/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site_repo/django_add/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/django_add/context_processors.py -------------------------------------------------------------------------------- /site_repo/django_add/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/django_add/middleware.py -------------------------------------------------------------------------------- /site_repo/django_add/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/django_add/readme.txt -------------------------------------------------------------------------------- /site_repo/docs/readme.txt: -------------------------------------------------------------------------------- 1 | Use this directory for documentation 2 | -------------------------------------------------------------------------------- /site_repo/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site_repo/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/home/admin.py -------------------------------------------------------------------------------- /site_repo/home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site_repo/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/home/models.py -------------------------------------------------------------------------------- /site_repo/home/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/home/readme.txt -------------------------------------------------------------------------------- /site_repo/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/home/tests.py -------------------------------------------------------------------------------- /site_repo/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/home/views.py -------------------------------------------------------------------------------- /site_repo/scripts/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/scripts/readme.txt -------------------------------------------------------------------------------- /site_repo/scripts/script_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/scripts/script_example.py -------------------------------------------------------------------------------- /site_repo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/settings.py -------------------------------------------------------------------------------- /site_repo/settings_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/settings_dev.py -------------------------------------------------------------------------------- /site_repo/settings_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/settings_production.py -------------------------------------------------------------------------------- /site_repo/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/static/main.css -------------------------------------------------------------------------------- /site_repo/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/static/main.js -------------------------------------------------------------------------------- /site_repo/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/templates/base.html -------------------------------------------------------------------------------- /site_repo/templates/home_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/templates/home_page.html -------------------------------------------------------------------------------- /site_repo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/urls.py -------------------------------------------------------------------------------- /site_repo/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site_repo/utils/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/utils/readme.txt -------------------------------------------------------------------------------- /site_repo/utils/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/utils/requests.py -------------------------------------------------------------------------------- /site_repo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/site_repo/wsgi.py -------------------------------------------------------------------------------- /user/bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aviah/one-click-django-server/HEAD/user/bash_aliases -------------------------------------------------------------------------------- /user/id_rsa.pub: -------------------------------------------------------------------------------- 1 | Replace with your actual public ssh key --------------------------------------------------------------------------------