getmeli / meli

Platform for deploying static sites and frontend applications easily. Automatic SSL, deploy previews, reverse proxy, and more.
Other
2.4k stars 97 forks source link

Does it support special path reverse proxy? #263

Closed seepine closed 2 months ago

seepine commented 9 months ago

Example like nginx config, when curl https://site.example.com/api/xxx, it return https://b.example.com/api/xxx

location ^~ /api {
    proxy_pass https://b.example.com/; 
    proxy_set_header Host $host; 
}