This repository has been archived on 2026-02-22. You can view files and clone it, but cannot push or open issues/pull-requests.
|
# 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/;
|
|
}
|
|
}
|