Adds doc for HAproxy

This commit is contained in:
sudneo
2019-08-25 22:53:34 +03:00
parent f2f3d41649
commit b2e0e4efe3
6 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
worker_processes auto;
daemon off;
events {
worker_connections 1024;
}
http {
server_tokens off;
server {
listen 80;
index index.html;
root /var/www;
}
}