Re: [racket-users] nginx with Racket web server

2017-04-01 Thread Marc Kaufmann
Ergh... Indeed, that did the trick. Thanks Daniel. On Sat, Apr 1, 2017 at 5:34 PM, Daniel Brunner wrote: > Hi Marc, > > I used this setup several times. > > Marc Kaufmann hat am 1. April 2017 um 23:01 > geschrieben: > location / { > try_files

Re: [racket-users] nginx with Racket web server

2017-04-01 Thread Daniel Brunner
Hi Marc, I used this setup several times. Marc Kaufmann hat am 1. April 2017 um 23:01 geschrieben: location / { try_files proxy_pass http:///127.0.0.1:8080; } I think you should omit the "try_files". I think it should read: location / { proxy_pass

[racket-users] nginx with Racket web server

2017-04-01 Thread Marc Kaufmann
Hi all, this should be simple, but I couldn't get it working, so I am here. I am using nginx on my server since I have multiple domains. I am trying to pass all the requests to this particular instance to the Racket server, which according to the docs works like this for Apache: RewriteEngine