mirror of
https://github.com/langchain-ai/langsmith-sdk-christopher.git
synced 2026-07-21 00:05:23 -04:00
68812b258c
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.`
17 lines
363 B
Nginx Configuration File
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;
|
|
}
|
|
}
|