haskell-realworld-example/nginx/nginx.conf

15 lines
171 B
Nginx Configuration File
Raw Permalink Normal View History

2022-04-21 18:35:00 +03:00
server{
listen 80;
server_name _;
location / {
root /srv;
index index.html;
try_files $uri $uri/ /index.html;
}
location /api {
proxy_pass <upstream>;
}
}