本教程将指导您通过 Docker Compose 搭建 Gitea 服务,并利用 Nginx Proxy Manager 配置域名与 SSL 证书。 官方中文文档https://docs.gitea.com/zh-cn/ 1. 在服务器合适位置新建一个目录 gitea,然后新建一个docker-compose.yml文件 这里选择使用postgres数据库 mkdirgitea vim docker-compose.yml docker-compose.yml...
// 2. The reverse proxy is not configured correctly, doesn't pass "X-Forwarded-Proto/Host" headers, eg: only one "proxy_pass http://gitea:3000" in Nginx. // 3. There is no reverse proxy. // Without an extra config option, Gitea is impossible to distinguish between case 2 and case...
i config proxy in app.ini: [proxy]PROXY_ENABLED= truePROXY_URL= socks://192.168.25.2:1080PROXY_HOSTS= *.gmail.com,*.googleapis.com[oauth2_client]REGISTER_EMAIL_CONFIRM= trueENABLE_AUTO_REGISTRATION= falseUSERNAME= nicknameUPDATE_AVATAR= trueACCOUNT_LINKING= login when i use commandline in doc...
container_name: nginx-proxy restart: always ports:-80:80-443:443labels: com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy:"true"volumes:- ./nginx-proxy/certs:/etc/nginx/certs:ro- ./nginx-proxy/config/nginx/conf.d:/etc/nginx/conf.d- ./nginx-proxy/acme:/acmecerts- ./nginx-...
简介: gitea配置全局代理用于镜像github源 gitea打算加入代理功能方便mirror一些仓库,因为国内访问速度不佳只需要添加下述配置到config/app.ini ... PROXY_ENABLED = true PROXY_URL = socks://127.0.0.1:1080 PROXY_H...
Update nginx recommendations (#26924) Update backup instructions to align with archive structure (#26902) Expanding documentation in queue.go (#26889) Update info regarding internet connection for build (#26776) Docs: template variables (#26547) Update index doc (#26455) Update zh-cn documenta...
proxy_pass http://192.168.10.7:8568; } } # 呼叫中心接口 server { listen 8080; server_name apicc.sinoassist.com; include /opt/bitnami/nginx/conf/ssl.sinoassist.conf; location / { proxy_pass http://192.168.5.201:8080; } } # 呼叫中心接口websocket server { listen ...
Improve reverse-proxy document and fix nginx config bug (#24616) Fix broken README link (#24546) Update CONTRIBUTING.md (#24492) Docs for Gitea Actions (#24405) Zh-cn support on doc pages (#24166) Fix https setup doc zh-cn (#24015) Adjust some documentations titles (#23941) More...
I'm using nginx proxy manager, and all recommended settings mentioned in docs are added by default. in docs server { listen 80; server_name git.example.com; location / { client_max_body_size 512M; proxy_pass http://localhost:3000; proxy_set_header Connection $http_connection; proxy_set...
I don't use Nginx, if this behavior is no longer the same among web servers then it's either a free-for-all decision or an RFC update, in which case I'd love to know. Still, canonicalizing the names with forward-slash to prevent issues and polishing things would be the best ...