You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I was using camptocamp/mapserver:7.4 image deploy on kubernetes cluster, it was working fine regardless the cluster is on a virtual machine or on aws.
But when updating to 8.0, start to encounter issue when deploy on aws. How I test is to curl http://localhost; previously it is returning response "No query information to decode. QUERY_STRING is set, but empty.", but with mapserver 8.0 it return status 500.
Not sure if it helps but the following is the logs from the container upon start up:
Switching listen port to 80
[Thu Mar 07 08:37:10.890974 2024] [env:warn] [pid 288:tid 140160219256704] AH01506: PassEnv variable _ was undefined
[Thu Mar 07 08:37:10.907568 2024] [env:warn] [pid 288:tid 140160219256704] AH01506: PassEnv variable _ was undefined
[notice] [pid 288] AH00489: Apache/2.4.52 (Ubuntu) mod_fcgid/2.3.9 configured -- resuming normal operations
[notice] [pid 288] AH00094: Command line: 'apache2 -D FOREGROUND'
My Dockerfile:
FROM camptocamp/mapserver:8.0
# Install gettext to use envsubst command container post-startup
RUN apt-get update && apt install -y --no-install-recommends gettext
# Copy my custom .map file into /etc/mapserver
WORKDIR /etc
COPY map/*.map mapserver/
WORKDIR /etc/mapserver
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I was using
camptocamp/mapserver:7.4
image deploy on kubernetes cluster, it was working fine regardless the cluster is on a virtual machine or on aws.But when updating to 8.0, start to encounter issue when deploy on aws. How I test is to curl http://localhost; previously it is returning response "No query information to decode. QUERY_STRING is set, but empty.", but with mapserver 8.0 it return status 500.
Not sure if it helps but the following is the logs from the container upon start up:
My Dockerfile:
Beta Was this translation helpful? Give feedback.
All reactions