This repository has been archived on 2026-02-22. You can view files and clone it, but cannot push or open issues/pull-requests.
web/nginx/gateway.conf.template

14 lines
243 B
Nginx Configuration File

# vim: ft=nginx
server {
listen 80;
listen [::]:80;
location /api/v1/posts/ {
proxy_pass http://${RB_BLOG}/v1/posts/;
}
location /api/v1/sections/ {
proxy_pass http://${RB_BLOG}/v1/sections/;
}
}