Skip to content

Commit

Permalink
Diable basic auth for local ddev setup
Browse files Browse the repository at this point in the history
  • Loading branch information
cmuench committed May 17, 2023
1 parent ca423a5 commit 89e766c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ This addon sets up a n8n instance for your DDEV project. n8n is a free and open

## Basic Authentication

If not changed it's set to `n8n` and `n8n`.
The Basic Auth is disabled by default.
Enable it in the .ddev/docker-compose.n8n.yaml if required.
The credentials are defined in the same file. If not changed it's set to `n8n` and `n8n` for username and password.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.n8n.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- "./n8n/startup-script.sh:/startup-script.sh"
environment:
GENERIC_TIMEZONE: "Europe/Berlin"
N8N_BASIC_AUTH_ACTIVE: true
N8N_BASIC_AUTH_ACTIVE: false
N8N_BASIC_AUTH_USER: "n8n"
N8N_BASIC_AUTH_PASSWORD: "n8n"
N8N_HOST: "${DDEV_SITENAME}.ddev.site"
Expand Down

0 comments on commit 89e766c

Please sign in to comment.