How to setup an Outline VPN Server on Ubuntu 16.04 Server
This guide will show you how to install Outline Server on an Ubuntu 16.04 Server and use Outline Manager.
Outline Manager supports Windows, macOS and Linux.
| # Yandex | |
| MAIL_MAILER=smtp | |
| MAIL_HOST=smtp.yandex.ru | |
| MAIL_PORT=587 | |
| MAIL_USERNAME="noreply@yandex.ru" | |
| MAIL_PASSWORD="password" | |
| MAIL_ENCRYPTION=TLS | |
| MAIL_FROM_ADDRESS="youremail@yandex.ru" | |
| MAIL_FROM_NAME="${APP_NAME}" |
| Stack Name | Stack Type | Operating System / Platform | Server | Database | Language or SDK | Framework | UI | Message Bus / Queue | |
|---|---|---|---|---|---|---|---|---|---|
| AMP | Web (Backend) | Apache | MySQL / MariaDB | Perl / PHP / Python | |||||
| BAMP | Web (Backend) | BSD | Apache | MySQL / MariaDB | Perl / PHP / Python | ||||
| BAPP | Web (Backend) | BSD | Apache | PostgreSQL | Perl / PHP / Python | ||||
| BCHS | Web (Backend) | BSD | SQLite | httpd | C | ||||
| DAMP | Web (Backend) | Darwin | Apache | MySQL / MariaDB | Perl / PHP / Python | ||||
| ELK | Time Series Data | Logstash | Elasticsearch | Kibana | |||||
| ELKB | Time Series Data | Logstash | Elasticsearch | Beats | Kibana | ||||
| FAMP | Web (Backend) | FreeBSD | Apache | MySQL / MariaDB | Perl / PHP / Python | ||||
| FWAP | Web (Backend) | Windows | Apache | Firebird | Perl / PHP / Python |
Snake is a fun game to make as it doesn't require a lot of code (less than 100 lines with all comments removed). This is a basic implementation of the snake game, but it's missing a few things intentionally and they're left as further exploration for the reader.
| namespace App\Http\Middleware; | |
| use Illuminate\Support\Facades\Log; | |
| class LogAfterRequest { | |
| public function handle($request, \Closure $next) | |
| { | |
| return $next($request); | |
| } |
| # This hosts file is brought to you by Dan Pollock and can be found at | |
| # http://someonewhocares.org/hosts/ | |
| # You are free to copy and distribute this file for non-commercial uses, | |
| # as long the original URL and attribution is included. | |
| #<localhost> | |
| 127.0.0.1 localhost | |
| 127.0.0.1 localhost.localdomain | |
| 255.255.255.255 broadcasthost | |
| ::1 localhost |
| <IfModule mod_expires.c> | |
| ExpiresActive on | |
| # Perhaps better to whitelist expires rules? Perhaps. | |
| ExpiresDefault "access plus 1 month" | |
| # Data | |
| ExpiresByType text/xml "access plus 0 seconds" | |
| ExpiresByType application/xml "access plus 0 seconds" | |
| ExpiresByType application/json "access plus 0 seconds" |