├── .gitignore ├── CNAME ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── content_below.html ├── core_features.html ├── footer.html ├── free_plan.html ├── header.html ├── payments.html └── pro_plan.html ├── _layouts └── default.html ├── about.html ├── css ├── bootstrap.css ├── colour-blue.css ├── colour-red.css ├── custom-colour.css ├── custom-style.css ├── flexslider.css ├── font │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── responsive.css └── theme-style.css ├── docs ├── architecture.md └── requirements.md ├── downloads.html ├── img ├── README.txt ├── anonym.jpg ├── bg_diamond.png ├── bg_divider.png ├── bg_noise-2.png ├── bg_noise-5.png ├── blog │ ├── ape.jpg │ ├── bee.jpg │ ├── butterfly.jpg │ ├── fly.jpg │ ├── frog.jpg │ ├── ladybird.jpg │ └── water-pump.jpg ├── customers │ ├── amazon.jpg │ ├── bitbucket.png │ ├── css3.jpg │ ├── ebay.png │ ├── github.png │ ├── google.jpg │ ├── html5.png │ ├── jquery.png │ ├── less.png │ ├── vodafone.jpg │ ├── yahoo.jpeg │ └── youtube.png ├── features │ ├── feature-1.png │ ├── feature-2.png │ ├── feature-3.png │ ├── feature-4.png │ ├── feature-5-cropped.png │ └── feature-5.png ├── flags │ ├── de.png │ ├── nl.png │ ├── sg.png │ ├── uk.png │ └── usa.png ├── glyphicons-halflings-white.png ├── glyphicons-halflings.png ├── logo.jpg ├── logo │ ├── i2p.png │ ├── openvpn.png │ └── tor.png ├── misc │ ├── map.png │ └── purple.png ├── osi.jpg ├── promo │ └── obama.jpg ├── ps │ ├── robokassa.png │ ├── visa.png │ ├── webmoney.png │ └── yandex.jpg ├── security.jpg ├── slides │ ├── slide1.png │ └── slide2.png ├── sorm.jpg ├── t-logo.png ├── team │ ├── adele.jpg │ ├── bono.jpg │ ├── deniro.jpg │ ├── jimi.jpg │ ├── jobs.jpg │ ├── jolie.jpg │ ├── obama.jpg │ └── women1.jpg ├── vpn_tunnel.jpg ├── wm-cert.png └── wm-logo.png ├── index.html ├── services.html └── setup ├── README.md ├── Vagrantfile └── single_node ├── docker-compose.yml ├── docker_run.sh ├── env_variables_prompt.sh ├── install.sh └── var_names /.gitignore: -------------------------------------------------------------------------------- 1 | public/**/* 2 | setup/single_node/vars 3 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | smartvpn.dev -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/content_below.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_includes/content_below.html -------------------------------------------------------------------------------- /_includes/core_features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_includes/core_features.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/free_plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_includes/free_plan.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/payments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_includes/payments.html -------------------------------------------------------------------------------- /_includes/pro_plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_includes/pro_plan.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/about.html -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/colour-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/colour-blue.css -------------------------------------------------------------------------------- /css/colour-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/colour-red.css -------------------------------------------------------------------------------- /css/custom-colour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/custom-colour.css -------------------------------------------------------------------------------- /css/custom-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/custom-style.css -------------------------------------------------------------------------------- /css/flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/flexslider.css -------------------------------------------------------------------------------- /css/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/font/FontAwesome.otf -------------------------------------------------------------------------------- /css/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /css/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /css/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /css/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/responsive.css -------------------------------------------------------------------------------- /css/theme-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/css/theme-style.css -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /downloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/downloads.html -------------------------------------------------------------------------------- /img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/README.txt -------------------------------------------------------------------------------- /img/anonym.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/anonym.jpg -------------------------------------------------------------------------------- /img/bg_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/bg_diamond.png -------------------------------------------------------------------------------- /img/bg_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/bg_divider.png -------------------------------------------------------------------------------- /img/bg_noise-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/bg_noise-2.png -------------------------------------------------------------------------------- /img/bg_noise-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/bg_noise-5.png -------------------------------------------------------------------------------- /img/blog/ape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/blog/ape.jpg -------------------------------------------------------------------------------- /img/blog/bee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/blog/bee.jpg -------------------------------------------------------------------------------- /img/blog/butterfly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/blog/butterfly.jpg -------------------------------------------------------------------------------- /img/blog/fly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/blog/fly.jpg -------------------------------------------------------------------------------- /img/blog/frog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/blog/frog.jpg -------------------------------------------------------------------------------- /img/blog/ladybird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/blog/ladybird.jpg -------------------------------------------------------------------------------- /img/blog/water-pump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/blog/water-pump.jpg -------------------------------------------------------------------------------- /img/customers/amazon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/amazon.jpg -------------------------------------------------------------------------------- /img/customers/bitbucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/bitbucket.png -------------------------------------------------------------------------------- /img/customers/css3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/css3.jpg -------------------------------------------------------------------------------- /img/customers/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/ebay.png -------------------------------------------------------------------------------- /img/customers/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/github.png -------------------------------------------------------------------------------- /img/customers/google.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/google.jpg -------------------------------------------------------------------------------- /img/customers/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/html5.png -------------------------------------------------------------------------------- /img/customers/jquery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/jquery.png -------------------------------------------------------------------------------- /img/customers/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/less.png -------------------------------------------------------------------------------- /img/customers/vodafone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/vodafone.jpg -------------------------------------------------------------------------------- /img/customers/yahoo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/yahoo.jpeg -------------------------------------------------------------------------------- /img/customers/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/customers/youtube.png -------------------------------------------------------------------------------- /img/features/feature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/features/feature-1.png -------------------------------------------------------------------------------- /img/features/feature-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/features/feature-2.png -------------------------------------------------------------------------------- /img/features/feature-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/features/feature-3.png -------------------------------------------------------------------------------- /img/features/feature-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/features/feature-4.png -------------------------------------------------------------------------------- /img/features/feature-5-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/features/feature-5-cropped.png -------------------------------------------------------------------------------- /img/features/feature-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/features/feature-5.png -------------------------------------------------------------------------------- /img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/flags/de.png -------------------------------------------------------------------------------- /img/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/flags/nl.png -------------------------------------------------------------------------------- /img/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/flags/sg.png -------------------------------------------------------------------------------- /img/flags/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/flags/uk.png -------------------------------------------------------------------------------- /img/flags/usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/flags/usa.png -------------------------------------------------------------------------------- /img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/logo.jpg -------------------------------------------------------------------------------- /img/logo/i2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/logo/i2p.png -------------------------------------------------------------------------------- /img/logo/openvpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/logo/openvpn.png -------------------------------------------------------------------------------- /img/logo/tor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/logo/tor.png -------------------------------------------------------------------------------- /img/misc/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/misc/map.png -------------------------------------------------------------------------------- /img/misc/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/misc/purple.png -------------------------------------------------------------------------------- /img/osi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/osi.jpg -------------------------------------------------------------------------------- /img/promo/obama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/promo/obama.jpg -------------------------------------------------------------------------------- /img/ps/robokassa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/ps/robokassa.png -------------------------------------------------------------------------------- /img/ps/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/ps/visa.png -------------------------------------------------------------------------------- /img/ps/webmoney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/ps/webmoney.png -------------------------------------------------------------------------------- /img/ps/yandex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/ps/yandex.jpg -------------------------------------------------------------------------------- /img/security.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/security.jpg -------------------------------------------------------------------------------- /img/slides/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/slides/slide1.png -------------------------------------------------------------------------------- /img/slides/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/slides/slide2.png -------------------------------------------------------------------------------- /img/sorm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/sorm.jpg -------------------------------------------------------------------------------- /img/t-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/t-logo.png -------------------------------------------------------------------------------- /img/team/adele.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/team/adele.jpg -------------------------------------------------------------------------------- /img/team/bono.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/team/bono.jpg -------------------------------------------------------------------------------- /img/team/deniro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/team/deniro.jpg -------------------------------------------------------------------------------- /img/team/jimi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/team/jimi.jpg -------------------------------------------------------------------------------- /img/team/jobs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/team/jobs.jpg -------------------------------------------------------------------------------- /img/team/jolie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/team/jolie.jpg -------------------------------------------------------------------------------- /img/team/obama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/team/obama.jpg -------------------------------------------------------------------------------- /img/team/women1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/team/women1.jpg -------------------------------------------------------------------------------- /img/vpn_tunnel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/vpn_tunnel.jpg -------------------------------------------------------------------------------- /img/wm-cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/wm-cert.png -------------------------------------------------------------------------------- /img/wm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/img/wm-logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/index.html -------------------------------------------------------------------------------- /services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/services.html -------------------------------------------------------------------------------- /setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/setup/README.md -------------------------------------------------------------------------------- /setup/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/setup/Vagrantfile -------------------------------------------------------------------------------- /setup/single_node/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/setup/single_node/docker-compose.yml -------------------------------------------------------------------------------- /setup/single_node/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/setup/single_node/docker_run.sh -------------------------------------------------------------------------------- /setup/single_node/env_variables_prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/setup/single_node/env_variables_prompt.sh -------------------------------------------------------------------------------- /setup/single_node/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/setup/single_node/install.sh -------------------------------------------------------------------------------- /setup/single_node/var_names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mehonoshin/smartvpn/HEAD/setup/single_node/var_names --------------------------------------------------------------------------------