mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
Moves documentation into README files, and improves links and
descriptions.
This commit is contained in:
parent
8f07d2906d
commit
9b0423ee94
@ -0,0 +1,8 @@
|
||||
This is the simplest example that runs Grist, suitable for local testing.
|
||||
|
||||
It is STRONGLY RECOMMENDED not to use this container in a way that makes it accessible to the internet.
|
||||
This setup lacks basic security or authentication.
|
||||
|
||||
Other examples demonstrate how to set up authentication and HTTPS.
|
||||
|
||||
See https://support.getgrist.com/self-managed for more information.
|
@ -1,9 +1,3 @@
|
||||
# This is the simplest example that runs Grist, suitable for local testing.
|
||||
|
||||
# It is STRONGLY RECOMMENDED not to use this container in a way that makes it accessible to the internet.
|
||||
# This setup lacks basic security or authentication.
|
||||
# See https://support.getgrist.com for more information.
|
||||
|
||||
services:
|
||||
grist:
|
||||
image: gristlabs/grist:latest
|
||||
|
14
docker-compose-examples/grist-traefik-basic-auth/README.md
Normal file
14
docker-compose-examples/grist-traefik-basic-auth/README.md
Normal file
@ -0,0 +1,14 @@
|
||||
This is the simplest example of Grist with authentication and HTTPS encryption.
|
||||
|
||||
It uses Traefik as:
|
||||
- A reverse proxy to manage certificates and provide HTTPS support
|
||||
- A basic authentication provided using Traefik's Basic Auth middleware.
|
||||
|
||||
This setup, after configuring HTTPS certificates correctly, should be acceptable on the public internet.
|
||||
|
||||
However, it doesn't allow a user to sign-out due to the way browsers handle basic authentication.
|
||||
|
||||
You may want to try a more secure authentication setup such Authelia, Authentik or traefik-forward-auth.
|
||||
The OIDC auth example demonstrates a setup using Authelia.
|
||||
|
||||
See https://support.getgrist.com/self-managed for more information.
|
@ -1,13 +1,4 @@
|
||||
# This is the simplest example of Grist with authentication and https encryption.
|
||||
|
||||
# It uses Traefik as a reverse proxy and authentication service.
|
||||
# Users are defined in traefik-dynamic-config.yml.
|
||||
|
||||
# This setup, after configuring HTTPS certificates correctly, should be acceptable on the public internet.
|
||||
|
||||
# However, you may want to try a more secure authentication setup such Authelia, Authentik or traefik-forward-auth.
|
||||
|
||||
# See https://support.getgrist.com for more information.
|
||||
|
||||
services:
|
||||
grist:
|
||||
|
@ -0,0 +1,13 @@
|
||||
This examples shows how to start up Grist that:
|
||||
- Uses Postgres as a home database,
|
||||
- Redis as a state store.
|
||||
- MinIO for snapshot storage
|
||||
|
||||
It is STRONGLY RECOMMENDED not to use this container in a way that makes it accessible to the internet.
|
||||
This setup lacks basic security or authentication.
|
||||
|
||||
Other examples demonstrate how to set up authentication and HTTPS.
|
||||
|
||||
See https://support.getgrist.com/self-managed for more information.
|
||||
|
||||
This setup is based on one provided by Akito (https://github.com/theAkito).
|
@ -1,13 +1,4 @@
|
||||
# This examples shows how to start up Grist that:
|
||||
# - Uses Postgres as a home database,
|
||||
# - Redis as a state store.
|
||||
# - MinIO for snapshot storage
|
||||
|
||||
# It is STRONGLY RECOMMENDED not to use this container in a way that makes it accessible to the internet.
|
||||
# This setup lacks basic security or authentication.
|
||||
# See https://support.getgrist.com for more information.
|
||||
|
||||
# This setup is based on one provided by Akito (https://github.com/theAkito).
|
||||
|
||||
services:
|
||||
grist:
|
||||
@ -28,7 +19,7 @@ services:
|
||||
# Redis setup
|
||||
REDIS_URL: redis://grist-redis
|
||||
|
||||
# MinIO setup
|
||||
# MinIO setup. This requires the bucket set up on the MinIO instance with versioning enabled.
|
||||
GRIST_DOCS_MINIO_ACCESS_KEY: grist
|
||||
GRIST_DOCS_MINIO_SECRET_KEY: CHANGE THIS MINIO PASSWORD
|
||||
GRIST_DOCS_MINIO_USE_SSL: 0
|
||||
|
Loading…
Reference in New Issue
Block a user