mirror of
https://github.com/photoprism/photoprism-docs.git
synced 2026-04-25 02:35:50 +03:00
[PR #123] [CLOSED] Using HAPROXY as Reverse Proxy #140
Labels
No labels
bug
docs 📚
done
enhancement
enhancement
help wanted
idea
low-priority
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/photoprism-docs#140
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/photoprism/photoprism-docs/pull/123
Author: @mamema
Created: 6/27/2022
Status: ❌ Closed
Base:
userguide← Head:master📝 Commits (10+)
0574089Update release-notes.mdc678e4eUpdate release-notes.md64c15ccUpdate release-notes.md951cac5Update release-notes.mdcf0af76Update release-notes.mdb432763Update release-notes.mdbd169aaUpdate release-notes.mde2b4777Update release-notes.mdc5ccd22Update release-notes.md4cea7b4Update release-notes.md📊 Changes
7750 files changed (+11270 additions, -11989 deletions)
View changed files
➕
.dockerignore(+9 -0)➕
.github/workflows/ci.yml(+19 -0)📝
.gitignore(+1 -0)➕
Dockerfile(+1 -0)📝
LICENSE(+100 -58)➕
Makefile(+43 -0)📝
README.md(+81 -31)➖
docs/contact.md(+0 -62)📝
docs/credits.md(+18 -13)➕
docs/css/custom.css(+274 -0)➕
docs/developer-guide/checklists/web-security.md(+1 -0)➕
docs/developer-guide/clients/go.md(+111 -0)📝
docs/developer-guide/code-quality.md(+111 -20)📝
docs/developer-guide/configuration.md(+3 -2)📝
docs/developer-guide/directories.md(+1 -1)📝
docs/developer-guide/documentation.md(+17 -58)➕
docs/developer-guide/faq.md(+11 -0)➕
docs/developer-guide/img/CLA.png(+0 -0)➕
docs/developer-guide/img/CLAAgree.png(+0 -0)➕
docs/developer-guide/img/DashboardUntranslated.png(+0 -0)...and 80 more files
📄 Description
This explains, how to configure HAPROXY (WebSocket) connections between your client and backend services.
Example:
frontend connection handling
'photo' is the name of the subdomain
acl photo hdr(host) -i photo.example.com
use_backend be_photo_ipvANY if photo aclcrt_fe_http
backend config
be_photo is the name of the backend
backend be_photo_ipvANY
mode http
id 112
log global
timeout connect 30000
timeout server 30000
retries 3
load-server-state-from-file global
timeout queue 5s
timeout tunnel 2m
option redispatch
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.