haskell-realworld-example/nginx/nginx.conf
2022-04-21 23:35:00 +08:00

15 lines
171 B
Nginx Configuration File

server{
listen 80;
server_name _;
location / {
root /srv;
index index.html;
try_files $uri $uri/ /index.html;
}
location /api {
proxy_pass <upstream>;
}
}