Container: update nginx config
All checks were successful
/ build (push) Successful in 29s

This commit is contained in:
phil 2024-12-17 18:54:43 +01:00
parent c7a0ae934a
commit 5e8a6ab7db
2 changed files with 3 additions and 2 deletions

View file

@ -1,3 +1,4 @@
# Build: podman build -t code.philo.ydns.eu/philorg/gisaf-frontend -f Containerfile
FROM docker.io/library/nginx:alpine FROM docker.io/library/nginx:alpine
EXPOSE 80 EXPOSE 80

View file

@ -25,14 +25,14 @@ http {
server { server {
listen 8899; listen 80 default_server;
listen [::]:80 default_server;
gzip on; gzip on;
gzip_types text/plain application/xml; gzip_types text/plain application/xml;
gzip_proxied no-cache no-store private expired auth; gzip_proxied no-cache no-store private expired auth;
gzip_min_length 1000; gzip_min_length 1000;
server_name localhost;
charset utf-8; charset utf-8;
client_max_body_size 4G; client_max_body_size 4G;