This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # With this nginx configuration, you will be able to serve a Symfony app in a subdirectory | |
| # of a wordpress (or any other PHP application). | |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name mysite.com; | |
| root /var/www/wordpress; | |
| index index.php app.php index.html; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang='`en'> | |
| <head> | |
| <meta charset='utf-8'/> | |
| <title>Audio only stream example</title> | |
| <script src="//cdn.jsdelivr.net/npm/hls.js@latest"></script> | |
| <style> | |
| video { | |
| width: 640px; | |
| height: 360px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # A helper for kind to create and delete clusters with untrusted local registry. | |
| # Based on https://kind.sigs.k8s.io/docs/user/local-registry/ | |
| # | |
| # Note: kind 0.10.0 | |
| # Settings for kind cluster | |
| CLUSTER_NAME="kube-19" | |
| KIND_NODE_IMAGE="kindest/node:v1.19.7" |
OlderNewer