Skip to content

Commit

Permalink
update nginx config to use ruby 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
20wildmanj committed Jan 3, 2024
1 parent b7b5a30 commit 9d2fa1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nginx/app.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ server {
passenger_enabled on;
passenger_app_env production;

passenger_ruby /usr/bin/ruby2.7;
passenger_ruby /usr/bin/ruby3.2;
passenger_user app;

ssl_certificate /etc/letsencrypt/live/<REPLACE_WITH_YOUR_DOMAIN>/fullchain.pem;
Expand Down
2 changes: 1 addition & 1 deletion nginx/no-ssl-app.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ server {
root /home/app/webapp/public;
passenger_enabled on;
passenger_user app;
passenger_ruby /usr/bin/ruby2.7;
passenger_ruby /usr/bin/ruby3.2;

# Set max client body size for assessments and autograders
# regex matches one or more alpha-numeric characters and the hyphen '-'
Expand Down

0 comments on commit 9d2fa1a

Please sign in to comment.