- Install dnsmasq
sudo apt install -y dnsmasq
sudo apt install -y resolvconf
- 💡 The dnsmasq service will fail to start, you can ignore those errors for timebeing
- Disable the default systemd-resolved service
| # This to be used when you need to implement SSL | |
| # Make sure that apache mod_ssl is on | |
| # You can generate self signed certificates for development | |
| # http://www.selfsignedcertificate.com/ | |
| <VirtualHost *:443> | |
| ServerName yourapp.test | |
| #ServerAlias www.yourapp.test |
| # !/bin/bash | |
| # shell script text colors | |
| BLACK='\033[0;30m' | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| BROWN='\033[0;33m' | |
| BLUE='\033[0;34m' | |
| PURPLE='\033[0;35m' | |
| CYAN='\033[0;36m' |
| <?php | |
| namespace Modules\Wire\Providers; | |
| use Illuminate\Filesystem\Filesystem; | |
| use Illuminate\Support\ServiceProvider; | |
| use Illuminate\Support\Str; | |
| use Livewire\Component; | |
| use Livewire\Livewire; | |
| use Modules\Wire\Console\MakeCommand; |
| #!/bin/bash | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| # Ubuntu Server | |
| export DEBIAN_FRONTEND=noninteractive | |
| echo -e "\e[96m Adding php PPA \e[39m" | |
| sudo add-apt-repository -y ppa:ondrej/php |