LoginSignup
3
3

More than 5 years have passed since last update.

Yesodをnginxで動かす。書いてあるとおりにやったら動いた。

Posted at

http {
  server {
        listen 80;
        server_name myserver.com;
        rewrite ^/(.*) http://www.myserver.com/$1 permanent;
    }

    server {
        listen 80; # Incoming port for Nginx
        server_name www.myserver.com;
        location / {
            proxy_pass http://127.0.0.1:4321; # Reverse proxy to your Yesod app
        }
    }
}
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3