Skip to content
Snippets Groups Projects
Select Git revision
  • eb7418fb6aeaa60825e0fcce731d6c5d6d489fc2
  • master default
  • v1
  • btrfs-backup
4 results

bootstrap.yaml

Blame
    • nimrod's avatar
      bc19f017
      Bootstrapping. · bc19f017
      nimrod authored
      Roles for bootstrapping Debian, OpenBSD and OpenWRT hosts. Meaning,
      being able to run Ansible tasks on them as targets.
      bc19f017
      History
      Bootstrapping.
      nimrod authored
      Roles for bootstrapping Debian, OpenBSD and OpenWRT hosts. Meaning,
      being able to run Ansible tasks on them as targets.
    nextcloud.shore.co.il.conf 981 B
    map $host $nextcloud { default nextcloud; }
    
    server {
        listen      80;
        listen      [::]:80;
        server_name nextcloud.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 nextcloud.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/nextcloud-well-known.conf;
    
        location / {
            proxy_pass              http://$nextcloud$request_uri;
            proxy_http_version      1.1;
            include                 snippets/proxy-headers.conf;
            proxy_hide_header       X-Frame-Options;
            client_max_body_size    512m;
        }
    }