switch port to 8037

This commit is contained in:
Matthias Hemmerich 2025-04-29 21:40:31 +02:00
parent 029b884321
commit 5f61810fc2
3 changed files with 5 additions and 5 deletions

View file

@ -37,10 +37,10 @@ COPY --chown=nobody app/ /var/www/html/
USER nobody USER nobody
# Expose the port nginx is reachable on # Expose the port nginx is reachable on
EXPOSE 80 EXPOSE 8037
# Let supervisord start nginx & php-fpm # Let supervisord start nginx & php-fpm
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor.d/supervisord.conf"] CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor.d/supervisord.conf"]
# Configure a healthcheck to validate that everything is up & running # Configure a healthcheck to validate that everything is up & running
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:80/fpm-ping HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8037/fpm-ping

View file

@ -17,7 +17,7 @@ https://codeberg.org/angestoepselt/-/packages/container/refund-form/latest
The MIT License (MIT) The MIT License (MIT)
Copyright © 2021 angestöpselt e.V. Copyright © 2021 Angestöpselt e.V.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View file

@ -30,8 +30,8 @@ http {
# Default server definition # Default server definition
server { server {
listen [::]:80 default_server; listen [::]:8037 default_server;
listen 80 default_server; listen 8037 default_server;
server_name _; server_name _;
sendfile off; sendfile off;