mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
17 lines
477 B
Markdown
17 lines
477 B
Markdown
# Server Setup
|
|
|
|
!> ***Important***: Make sure that you secure your n8n instance like described under [Security](security.md)!
|
|
|
|
To run n8n on your webserver with own domain some environment variables
|
|
should be set to the appropriate values.
|
|
|
|
A possible configuration to run n8n on `https://n8n.example.com/` would look
|
|
like this:
|
|
|
|
```bash
|
|
export N8N_HOST="n8n.example.com"
|
|
export N8N_PROTOCOL=https
|
|
export N8N_PORT=443
|
|
export VUE_APP_URL_BASE_API="https://n8n.example.com/"
|
|
```
|