gancio-upstream/docs/install/nginx.md

43 lines
875 B
Markdown
Raw Normal View History

2021-09-28 15:34:43 +02:00
---
2019-07-17 00:41:08 +02:00
layout: default
2021-06-04 15:52:35 +02:00
title: Nginx setup
2019-07-27 13:04:06 +02:00
permalink: /install/nginx
parent: Install
2019-07-17 00:41:08 +02:00
---
2019-07-27 13:04:06 +02:00
2019-07-17 00:41:08 +02:00
## Nginx proxy configuration
2021-07-08 18:04:05 +02:00
This is the default nginx configuration for gancio, please modify at least «YOUR_DOMAIN». Note that it does not include HTTPS setup but you can easily use [certbot](https://certbot.eff.org/) for that.
2019-07-17 00:41:08 +02:00
2021-07-08 18:02:57 +02:00
- __You should be in the correct directory__
`/etc/nginx/sites-available`
2019-07-17 00:41:08 +02:00
```nginx
server {
listen 80;
listen [::]:80;
2021-07-08 18:04:05 +02:00
server_name <<YOUR_DOMAIN>>;
2019-07-17 00:41:08 +02:00
keepalive_timeout 70;
sendfile on;
client_max_body_size 80m;
location / {
try_files $uri @proxy;
}
location @proxy {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:13120;
}
}
2021-07-08 18:04:05 +02:00
2019-07-27 13:04:06 +02:00
```
2021-07-08 18:02:57 +02:00
- __Following this, you should create a link to the file in sites-enabled:__
```bash
ln -s /etc/nginx/sites-available/<your-config> /etc/nginx/sites-enabled/
```