mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-11-30 13:20:40 +03:00
13 lines
179 B
Nginx Configuration File
13 lines
179 B
Nginx Configuration File
upstream loadbalancer {
|
|
server api1:8080 weight=1;
|
|
server api2:8080 weight=1;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
proxy_pass http://loadbalancer;
|
|
}
|
|
}
|