Compare commits
2 commits
11ce6e7f02
...
1c2d48d930
Author | SHA1 | Date | |
---|---|---|---|
1c2d48d930 | |||
fef9f81236 |
|
@ -28,6 +28,7 @@ Not every stack is tested to fully work.
|
||||||
- [x] Duplicati
|
- [x] Duplicati
|
||||||
- [x] Folding@Home
|
- [x] Folding@Home
|
||||||
- [x] [Gatus](https://github.com/TwiN/gatus)
|
- [x] [Gatus](https://github.com/TwiN/gatus)
|
||||||
|
- [x] [Gitea](https://gitea.io/)
|
||||||
- [ ] [I2PD](https://github.com/PurpleI2P/i2pd)
|
- [ ] [I2PD](https://github.com/PurpleI2P/i2pd)
|
||||||
- [x] [Joplin](https://hub.docker.com/r/joplin/server) (working, abandoned)
|
- [x] [Joplin](https://hub.docker.com/r/joplin/server) (working, abandoned)
|
||||||
- [ ] Lidarr (didn't test, may not work)
|
- [ ] Lidarr (didn't test, may not work)
|
||||||
|
|
23
gitea/nginx/gitea.conf
Normal file
23
gitea/nginx/gitea.conf
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
server_name git.domain.tld;
|
||||||
|
|
||||||
|
access_log /var/log/nginx/git.domain.tld.access;
|
||||||
|
error_log /var/log/nginx/git.domain.tld.error;
|
||||||
|
|
||||||
|
charset utf-8;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
|
||||||
|
proxy_pass http://127.0.0.1:3000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#include config/gzip.conf;
|
||||||
|
|
||||||
|
# SSL config
|
||||||
|
#include ssl/domain.tld.conf;
|
||||||
|
}
|
Loading…
Reference in a new issue