Skip to content
Snippets Groups Projects
Select Git revision
  • 627104f60c5b0e2557786b1b6374694a9d504ca2
  • master default
2 results

smile-exec

Blame
    • nimrod's avatar
      dd6451c9
      smile-exec script. · dd6451c9
      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.
      dd6451c9
      History
      smile-exec script.
      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.
    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;
        }
    }