This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| DOMAIN ?= mydomain.com | |
| COUNTRY := IT | |
| STATE := IT | |
| COMPANY := Evil Corp. | |
| # credits to: https://gist.github.com/fntlnz/cf14feb5a46b2eda428e000157447309 | |
| # usage: |
| # Added to the bottom of my file | |
| PROXY_OAUTH_CLIENT_ID=2 | |
| PROXY_OAUTH_CLIENT_SECRET=SECRET-GENERATED-KEY-HERE | |
| PROXY_OAUTH_GRANT_TYPE=password |
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- | |
| Documented at | |
| http://linux.die.net/man/5/fonts-conf | |
| To check font mapping run the command at terminal | |
| $ fc-match 'helvetica Neue' |
| public function showToasters(){ | |
| // default info toaster with timeout | |
| $this->toaster('your message'); | |
| // makes it persistent | |
| $this->toaster('your message')->persistent(); | |
| // warning toaster with timeout | |
| $this->toaster('your message')->warning(); |