skip to Main Content

Running an apache container on a port > 1024

I've built a docker image based on httpd:2.4. In my k8s deployment I've defined the following securityContext: securityContext: privileged: false runAsNonRoot: true runAsUser: 431 allowPrivilegeEscalation: false In order to get this container to run properly as non-root apache needs to…

VIEW QUESTION

Securely running an apache container on k8s

I've built a docker image based on httpd:2.4. In my k8s deployment I've defined the following securityContext: securityContext: privileged: false runAsNonRoot: true runAsUser: 431 allowPrivilegeEscalation: false When I apply the deployment without this securityContext everything works fine, the server starts…

VIEW QUESTION

Querying Apache Solr with JSON values in brackets

When using Apache Solr's browser search tool (on localhost), when I query *:* (return all), the GET request returns results in the following format: "responseHeader":{ "zkConnected":true, "status":0, "QTime":12, "params":{ "q":"*:*", "_":"1562080387377"}}, "response":{"numFound":164,"start":0,"maxScore":1.0,"docs":[ { "id":"1", "name":["Maria Atkinson"], "email":["[email protected]"], "phone_number":["(408)500-6026x750"], "password":["password"], "_version_":1637959617282572288},…

VIEW QUESTION
Back To Top
Search