Select Git revision
-
nimrod authored
Add a new script, smile-exec. It's a very cut down version of smile-cli but I know what it's doing, it's far less buggy, a lot more transparent and easier to debug. Also, shell completion because I'm in the groove with that now.
nimrod authoredAdd a new script, smile-exec. It's a very cut down version of smile-cli but I know what it's doing, it's far less buggy, a lot more transparent and easier to debug. Also, shell completion because I'm in the groove with that now.
kibana.shore.co.il.conf 869 B
map $host $kibana { default kibana; }
server {
listen 80;
listen [::]:80;
server_name kibana.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
include snippets/www-acme-challenge.conf;
include snippets/redirect-https.conf;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name kibana.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
include snippets/ssl.conf;
include snippets/vouch.conf;
location / {
proxy_pass http://$kibana:5601$request_uri;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
}
}