blob: dc4ffff9f3d6eb86935f0cd1a903069e75cac963 (
plain)
1
2
3
4
5
6
7
8
9
|
server {
listen 80;
server_name localhost translate.argosopentech.com;
location / {
include proxy_params;
proxy_pass http://unix:/home/argosopentech/LibreTranslate/libretranslate.sock;
}
}
|