Files
langsmith-sdk-christopher/python/langsmith/cli/conf/nginx.conf
T
Zander Chase 68812b258c Change to LangSmith Package (#62)
Updates terminology and packaging to push to `langsmith` (I think that
makes sense vs. langsmith-sdk?)

Updates from `LangChainPlusClient` to `Client`

Updates CLI command to use `langsmith start/logs/etc.`
2023-06-26 16:08:39 -07:00

17 lines
363 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
error_log /var/log/nginx/error.log warn;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}