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

docker-compose.yml

Blame
    • nimrod's avatar
      efeceaa9
      Cleanup. · efeceaa9
      nimrod authored
      - No more proxying in www.shore.co.il. I think about redoing it all with
        a subdomain per service. Also no more secrets, intead authenticate
        against the LDAP server or something.
      - CI templates.
      - Simpler self-signed SSL certificate generation.
      - Set the hostname in CI.
      - Use the www-redirect snippet in shore.co.il.
      efeceaa9
      History
      Cleanup.
      nimrod authored
      - No more proxying in www.shore.co.il. I think about redoing it all with
        a subdomain per service. Also no more secrets, intead authenticate
        against the LDAP server or something.
      - CI templates.
      - Simpler self-signed SSL certificate generation.
      - Set the hostname in CI.
      - Use the www-redirect snippet in shore.co.il.
    urlencode 207 B
    #!/usr/bin/env python3
    """URL encode input."""
    import fileinput
    from urllib.parse import quote_plus as quote
    
    if __name__ == "__main__":
        for line in fileinput.input():
            print(quote(line.strip()))