CCrypto VPN public website https://vpn.ccrypto.org/
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 
alice 6d121b134d add apparently required tzdata 10 ay önce
ccvpn switch to CCryptoVPN Root v2 CA 10 ay önce
deploy add celery setup instructions 2 yıl önce
downloads update django + django_lcore, fix every broken thing 10 ay önce
kb new footer 1 yıl önce
lambdainst fix referrer link in admin 10 ay önce
locale/fr/LC_MESSAGES add 'why cc' box on homepage, fix cancel translation 10 ay önce
static add 'why cc' box on homepage, fix cancel translation 10 ay önce
templates add 'why cc' box on homepage, fix cancel translation 10 ay önce
tickets update django + django_lcore, fix every broken thing 10 ay önce
.gitignore Add missing downloads app 3 yıl önce
LICENSE Initial commit 6 yıl önce
README.md add shell tools 1 yıl önce
kb.json support update 1 yıl önce
manage.py Use python3 instead of python in manage.py 6 yıl önce
manage.sh Add up to date deploy instructions 3 yıl önce
poetry.lock add apparently required tzdata 10 ay önce
pylintrc Update deps (Django 2.2) 4 yıl önce
pyproject.toml add apparently required tzdata 10 ay önce
requirements.txt Replace some static settings by dynamic settings 5 yıl önce
update.sh Multiple unimportant fixes 6 yıl önce

README.md

CCrypto VPN

CCVPN is the software we use at CCrypto to provide our VPN. You can see it live at https://vpn.ccrypto.org/

It handles user management, support tickets, billing and is used as a backend for VPN authentication.
It communicates with an external service, lambdacore, that manages VPN servers and sessions.

Disclaimer: this is a specialized solution that requires proprietary software to function. This repo is a way for us to share our work freely as we don’t believe keeping it secret will do any good; feel free to base your own work on it but don’t except it to be of an use as-is.

CCrypto’s commercial support does not include this and will not help you set it up. Feel free to contact us about ccvpn, but with no guarantee.
PacketImpact however may provide you commercial support and more services about ccvpn and lambdacore.

Getting Started

# Install poetry
pip3 install poetry
export PATH=~/.local/bin/:$PATH  # also add that to your .profile

# Install ccvpn3
git clone https://git.ccrypto.org/ccrypto/ccvpn3.git
cd ccvpn3
poetry config settings.virtualenvs.in-project true
poetry install

cp ccvpn/local_settings.sample.py ccvpn/local_settings.py
# Edit ccvpn/local_settings.py
# See ccvpn/settings.py for all available settings and defaults

# Those need to be run on installation and updates
poetry run ./manage.py migrate
poetry run ./manage.py compilemessages
poetry run ./manage.py collectstatic

# The standard Django manage.py can be called through poetry
poetry run ./manage.py runserver

# Celery worker & scheduler are needed for background tasks
poetry run celery -A ccvpn.celery worker -l debug
poetry run celery -A ccvpn.celery beat -l debug

Debian Deployment

# Install uwsgi and a web server, and python deps
apt install gettext git nginx uwsgi uwsgi-plugin-python3 python3-venv python3-setuptools python3-pip

# Create a new account and switch to it
adduser --disabled-login ccvpn

su - ccvpn
# As ccvpn, follow the instructions in Getting Started
# then Ctrl-D/exit back to root

cp /home/ccvpn/ccvpn3/deploy/nginx.conf /etc/nginx/sites-enabled/ccvpn3.conf
cp /etc/ccvpn/ccvpn3/deploy/uwsgi.ini /etc/uwsgi/apps-enabled/ccvpn3.ini
systemctl restart uwsgi
systemctl reload nginx

Celery

# run celery background processes
poetry run celery -A ccvpn worker -l info
poetry run celery -A ccvpn beat -l info
# celery flower monitoring web ui
poetry run flower --port=5555 -A ccvpn

# ~ with systemd services ~

cp ./deploy/ccvpn-*.service /etc/systemd/
systemctl daemon-reload
systemctl enable --now ccvpn-{worker,scheduler,flower}.service