letta-ai--letta
4deafc5b1e
🌿 Preview Python SDK / changed-files (push) Has been cancelled
🌿 Preview Python SDK / preview-python-sdk (push) Has been cancelled
🌿 Preview TypeScript SDK / changed-files (push) Has been cancelled
🌿 Preview TypeScript SDK / preview-typescript-sdk (push) Has been cancelled
Sync Code / notify (push) Has been cancelled
Test Package Installation / test-install (3.13) (push) Has been cancelled
Test Package Installation / test-install (3.12) (push) Has been cancelled
Notify Submodule Repos / notify (push) Has been cancelled
Run Docker integration tests / test (push) Has been cancelled
🌿 Publish Docs / run (push) Has been cancelled
Test Package Installation / test-install (3.11) (push) Has been cancelled
29 行
681 B
Nginx Configuration File
29 行
681 B
Nginx Configuration File
events {
|
|
}
|
|
http {
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
listen 8283;
|
|
listen [::]:8283;
|
|
server_name letta.localhost;
|
|
set $api_target "http://letta-server:8283";
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
resolver 127.0.0.11; # docker dns
|
|
proxy_pass $api_target;
|
|
}
|
|
}
|
|
map $http_upgrade $connection_upgrade {
|
|
default upgrade;
|
|
'' close;
|
|
}
|
|
server {
|
|
listen 80 default_server;
|
|
server_name not_found;
|
|
return 404;
|
|
}
|
|
}
|