Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. # Folder where data should be saved
  2. DATA_FOLDER=/root/n8n/
  3.  
  4. # The top level domain to serve from
  5. DOMAIN_NAME=example.com
  6.  
  7. # The subdomain to serve from
  8. SUBDOMAIN=n8n
  9.  
  10. # DOMAIN_NAME and SUBDOMAIN combined decide where n8n will be reachable from
  11. # above example would result in: https://n8n.example.com
  12.  
  13. # The user name to use for autentication - IMPORTANT ALWAYS CHANGE!
  14. N8N_BASIC_AUTH_USER=user
  15.  
  16. # The password to use for autentication - IMPORTANT ALWAYS CHANGE!
  17. N8N_BASIC_AUTH_PASSWORD=password
  18.  
  19. # Optional timezone to set which gets used by Cron-Node by default
  20. # If not set New York time will be used
  21. GENERIC_TIMEZONE=Europe/Berlin
  22.  
  23. # The email address to use for the SSL certificate creation
  24. SSL_EMAIL=user@example.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement