使用Passenger+nginx部署Rails
程序员文章站
2022-03-14 18:40:39
...
1. Install Passender
2. Install nginx
3. Deploy Rails app
4. Start/Stop nginx
gem install passenger
2. Install nginx
passenger-install-nginx-module 1. Yes: download, compile and install Nginx for me. (recommended) Please specify a prefix directory [/opt/nginx]: /opt/nginx
3. Deploy Rails app
vi /opt/nginx/conf/nginx.conf server { listen 80; server_name localhost; root /xx/xx/rails_app/public; passenger_enabled on; rails_env production; }
4. Start/Stop nginx
/opt/nginx/sbin/nginx /opt/nginx/sbin/nginx -s quit
推荐阅读
-
Vue CLI3创建项目部署到Tomcat 使用ngrok映射到外网
-
使用k8s部署Django项目的方法步骤
-
IntelliJ IDEA 中使用jRebel进行 Java 热部署教程图解
-
使用gunicorn部署Flask项目
-
使用Git实现Laravel项目的自动化部署
-
使用PyCharm配合部署Python的Django框架的配置纪实
-
使用FastCGI部署Python的Django应用的教程
-
ASP.NET Core部署前期准备 使用Hyper-V安装Ubuntu Server 16.10
-
使用Docker部署 spring-boot maven应用的方法
-
使用docker -v 和 Publish over SSH插件实现war包自动部署到docker的操作步骤