如何在Windows下使用nginx + rails API安装和配置服务器?

时间:2017-12-04 06:37:49

标签: ruby-on-rails windows nginx

有两个问题:

  1. 如何在nginx服务器上部署RAILS API应用程序(通过Windows),目前我只部署了用Angular编写的客户端部分,现在我需要从服务器端显示数据用Rails编写。

    我的 nginx.conf 文件是

  2. worker_processes  1;
    events {
        worker_connections  1024;
    }
    http {
        include       mime.types;
        default_type  application/octet-stream;
        sendfile        on;
        keepalive_timeout  65;
        server {
            listen       80;
            server_name  localhost;
            location / {
                root   html/dist;
                index  index.html index.htm;
            }
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   html/dist;
            }     
        }
    }

    1. 更新页面后,如果以大约此格式http://localhost/login指定链接,它将返回错误404,尽管它在更新之前有效。如何解决这个问题?

0 个答案:

没有答案