Browse Source

change upstream from hunchentoot to hot-line.

I was getting errors with the previous nginx config.
master
Craig Oates 2 years ago
parent
commit
da4ea090a2
  1. 4
      conf/hot-line-prod.conf

4
conf/hot-line-prod.conf

@ -1,4 +1,4 @@
upstream hunchentoot {
upstream hot-line {
server 127.0.0.1:3002;
}
@ -24,7 +24,7 @@ server {
# if the requested file does not exist then
# proxy to the hunchentoot server cluster
if (!-f $request_filename) {
proxy_pass http://hunchentoot;
proxy_pass http://hot-line;
}
}
}
Loading…
Cancel
Save