This commit is contained in:
Tim Bendt
2025-11-28 22:46:20 -05:00
parent 23c7db3172
commit d9ea9532eb
5 changed files with 6 additions and 20 deletions

View File

@@ -45,4 +45,4 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80 EXPOSE 80
# Start supervisor # Start supervisor
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]

View File

@@ -1 +0,0 @@
web: vendor/bin/heroku-php-nginx

3
mise.toml Normal file
View File

@@ -0,0 +1,3 @@
[tools]
"ubi:railwayapp/railpack" = "latest"
php = "8.3"

View File

@@ -1,5 +1,5 @@
upstream php { upstream php {
server unix:/var/run/php/php8.1-fpm.sock; server unix:/var/run/php/php8.3-fpm.sock;
} }
server { server {
@@ -124,4 +124,4 @@ server {
# Error pages # Error pages
error_page 404 /404.html; error_page 404 /404.html;
} }

View File

@@ -1,16 +0,0 @@
[supervisord]
nodaemon=true
[program:php-fpm]
command=php-fpm
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:nginx]
command=nginx -g 'daemon off;'
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0