Skip to content
Snippets Groups Projects
Select Git revision
  • 95eb6afe6dce2b9e1f6a81f114549d57f40c81a5
  • master default
  • host01
  • ns4
  • kodi
5 results

nextcloud.shore.co.il.conf

Blame
    • nimrod's avatar
      95eb6afe
      Collabora Online and Nextcloud, another try. · 95eb6afe
      nimrod authored
      I swear it should be the other way round (it looks to me like Nextcloud
      is embedding the code iframe), but disabling CSP on Nextcloud worked and
      I saw a comment on the Internet about it so lets give it a try.
      95eb6afe
      History
      Collabora Online and Nextcloud, another try.
      nimrod authored
      I swear it should be the other way round (it looks to me like Nextcloud
      is embedding the code iframe), but disabling CSP on Nextcloud worked and
      I saw a comment on the Internet about it so lets give it a try.
    vouch.shore.co.il.conf 875 B
    # The $vouch variable is defined in global.conf, it's needed by other servers
    # and deployments.
    server {
        listen      80;
        listen      [::]:80;
        server_name vouch.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 vouch.shore.co.il;
        include     snippets/robots-disallow-all.conf;
        include     snippets/ads-txt.conf;
        include     snippets/security-txt.conf;
        include     snippets/ssl.conf;
    
        location / {
            proxy_pass              http://$vouch:9090;
            proxy_http_version      1.1;
            include                 snippets/proxy-headers.conf;
        }
    }