Skip to content

Instantly share code, notes, and snippets.

View mijaelsaban's full-sized avatar
🎯
Focusing

mija mijaelsaban

🎯
Focusing
  • Argentina
View GitHub Profile
@pablokbs
pablokbs / gist:bf29766d816ae8238c6f7718d0ea69c4
Created August 28, 2020 02:29
digitalocean-clusterautoscaler.log
I0828 02:28:54.181230 1 flags.go:52] FLAG: --add-dir-header="false"
I0828 02:28:54.181491 1 flags.go:52] FLAG: --address=":8085"
I0828 02:28:54.181586 1 flags.go:52] FLAG: --alsologtostderr="false"
I0828 02:28:54.181659 1 flags.go:52] FLAG: --aws-use-static-instance-list="false"
I0828 02:28:54.181732 1 flags.go:52] FLAG: --balance-similar-node-groups="false"
I0828 02:28:54.181778 1 flags.go:52] FLAG: --cloud-config=""
I0828 02:28:54.181831 1 flags.go:52] FLAG: --cloud-provider="digitalocean"
I0828 02:28:54.181864 1 flags.go:52] FLAG: --cloud-provider-gce-l7lb-src-cidrs="130.211.0.0/22,35.191.0.0/16"
I0828 02:28:54.181921 1 flags.go:52] FLAG: --cloud-provider-gce-lb-src-cidrs="130.211.0.0/22,209.85.152.0/22,209.85.204.0/22,35.191.0.0/16"
I0828 02:28:54.182003 1 flags.go:52] FLAG: --cluster-name=""
@sdwru
sdwru / Laravel-websockets-on-Laravel-API-backend+Laravel-Echo-on-Vue.js-front-end-on-different-server-domain-using-private-channel.md
Last active November 5, 2025 01:14
Laravel-websockets on Laravel API backend + Laravel Echo on Vue.js front end on different server/domain using private channel.md

These are my notes on how I got all the basics working end to end.

Laravel API backend and Vue.js frontend are 2 different servers on different public IP addresses and different domains. I am using pure Vue.js on the front end. Most instructions assume Laravel Vue.js is being used which is structured slightly different with different file names and directories.

  • Laravel API backend domain name (api.somedomain.com)
  • Vue.js frontend domain name (client.somedomain.com)

No database is needed for any of this to work using sync queue. That is only needed in production if/when you use a database queue.


@pablokbs
pablokbs / docker-compose-wordpress.yaml
Created December 16, 2018 14:40
Docker-compose para wordpress con mysql
## docker-compose para correr wordpress con una base de datos en mysql
## by PeladoNerd https://youtu.be/eoFxMaeB9H4
version: '3.1'
services:
wordpress:
image: wordpress:php7.1-apache
ports: