diff --git a/Dockerfile b/Dockerfile index 930cb66..95ac241 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,10 +37,10 @@ COPY --chown=nobody app/ /var/www/html/ USER nobody # Expose the port nginx is reachable on -EXPOSE 80 +EXPOSE 8037 # Let supervisord start nginx & php-fpm CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor.d/supervisord.conf"] # 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 \ No newline at end of file +HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8037/fpm-ping \ No newline at end of file diff --git a/README.md b/README.md index de4913a..a9dab31 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ https://codeberg.org/angestoepselt/-/packages/container/refund-form/latest 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: diff --git a/config/nginx.conf b/config/nginx.conf index 1642c9b..929d2b5 100644 --- a/config/nginx.conf +++ b/config/nginx.conf @@ -30,8 +30,8 @@ http { # Default server definition server { - listen [::]:80 default_server; - listen 80 default_server; + listen [::]:8037 default_server; + listen 8037 default_server; server_name _; sendfile off;