4deafc5b1e
Run Docker integration tests / test (push) Waiting to run
🌿 Publish Docs / run (push) Waiting to run
🌿 Preview Python SDK / changed-files (push) Waiting to run
🌿 Preview Python SDK / preview-python-sdk (push) Blocked by required conditions
🌿 Preview TypeScript SDK / changed-files (push) Waiting to run
🌿 Preview TypeScript SDK / preview-typescript-sdk (push) Blocked by required conditions
Sync Code / notify (push) Waiting to run
Notify Submodule Repos / notify (push) Waiting to run
Test Package Installation / test-install (3.13) (push) Waiting to run
Test Package Installation / test-install (3.12) (push) Waiting to run
Test Package Installation / test-install (3.11) (push) Waiting to run
29 lines
681 B
Nginx Configuration File
29 lines
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;
|
|
}
|
|
}
|