mirror of
https://codeberg.org/angestoepselt/refund-form.git
synced 2025-05-24 14:46:16 +00:00
switch port to 8037
This commit is contained in:
parent
029b884321
commit
5f61810fc2
3 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||||
|
|
@ -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:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue