I hereby claim:
- I am ravaelles on github.
- I am ravaelles (https://keybase.io/ravaelles) on keybase.
- I have a public key ASAoe_F65zu8GJCNYbJC6xsw04OmYkFhhR4_Nt6xzAzIWwo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Set the base directory where the new directory will be created | |
| base_dir="/home/BACKUPS" | |
| # Create a variable for the current date in Y-m-d format | |
| current_date=$(date +%Y-%m-%d) | |
| # Define an array to store the messages | |
| declare -a messages |
| # Ensure to get this file: https://tinyurl.com/genericlocal | |
| # And that it's placed in: /etc/nginx/sites-enabled/generic.local | |
| # Also make sure to have the certificate files! See generic.local at the end. | |
| # | |
| # Example usage: ./newdomain.sh cool /projects/MyProject | |
| # | |
| # After that you should be able to visit https://cool.local | |
| cp /etc/nginx/sites-enabled/generic.local /etc/nginx/sites-enabled/$1.local | |
| sed -i "s/PROJECT/$1/g" /etc/nginx/sites-enabled/$1.local |
| server { | |
| listen 80; | |
| listen 443 ssl http2; | |
| server_name .PROJECT.local; | |
| root "DIRPATH"; | |
| index index.html index.htm index.php; | |
| charset utf-8; |
I hereby claim:
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <!-- development version, includes helpful console warnings --> | |
| <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
| </head> | |
| <body> |
| // See example: https://image.prntscr.com/image/cTIv8JkLR7yWEQxVev9SyA.jpeg | |
| function numberToColor($value, $min, $max, $gradientColors = null) | |
| { | |
| // Ensure value is in range | |
| if ($value < $min) { | |
| $value = $min; | |
| } | |
| if ($value > $max) { | |
| $value = $max; |
| <?php | |
| namespace Jenssegers\Mongodb\Auth; | |
| use DateTime; | |
| use DateTimeZone; | |
| use Illuminate\Auth\Passwords\DatabaseTokenRepository as BaseDatabaseTokenRepository; | |
| use MongoDB\BSON\UTCDateTime; | |
| class DatabaseTokenRepository extends BaseDatabaseTokenRepository { |
| [program:laravel-worker] | |
| process_name=%(program_name)s_%(process_num)02d | |
| command=php /var/www/html/artisan queue:work database --sleep=3 --tries=3 | |
| autostart=true | |
| autorestart=true | |
| user=ubuntu | |
| numprocs=10 | |
| redirect_stderr=true | |
| stdout_logfile=/var/www/html/worker.log |
| #!/bin/bash | |
| ###################################################### | |
| ### README ########################################### | |
| ###################################################### | |
| ### | |
| ### One-line server install script for Ubuntu. | |
| ### Installs Nginx + PHP7.1 + MongoDB for PHP driver. | |
| ### | |
| ### Removes previous Apache, PHP, nginx installations. |
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| # SSL configuration | |
| # | |
| # listen 443 ssl default_server; | |
| # listen [::]:443 ssl default_server; | |
| # | |
| # Note: You should disable gzip for SSL traffic. |