skip to Main Content

Nginx Replace characters in hostname

I have urls like this: https://foo.somedomain.com https://foo.bar.somedomain.com https://foo.bar.baz.somedomain.com and so on And I want nginx to replace dots "." characters in the subdomain part of the hostname by dashes "-", so this would result in : https://foo.somedomain.com https://foo-bar.somedomain.com https://foo-bar-baz.somedomain.com and…

VIEW QUESTION

accessing the minio object presigned get URL both from inside and outside docker container – Nginx

I used the following docker-compose.yml file to deploy a FastAPI, MongoDB, Minio docker containers. version: '3.7' services: db: image: mongo:latest container_name: mongodb user: 1000:1000 volumes: - /home/krishna/mongodb/db:/data/db minio: image: minio/minio:latest container_name: minio command: server /data --console-address ":9001" ports: - 9000:9000…

VIEW QUESTION

nginx reverse proxy+rundeck is not wokring as expected

I want to use rundeck with NBINX reverse proxy but not working as exptected. rundeck is at: http://host.domain:4440/rundeck nginx reverse proxy is at: https://host.domain/rundeck nginx's configuration: location /rundeck/ { proxy_http_version 1.1; proxy_set_header X-Forwarded-Proto https; proxy_pass http://192.168.1.102:4440/rundeck/; } rundeck's customize: RUNDECK_SERVER_CONTEXTPATH=/rundeck…

VIEW QUESTION

Unable to apply Nginx ingress controller

I have 3 VMS running in localsystemeach 1 Master, 2 Nodes. I have installed weave CNI Network. I am trying to install the Nginx ingress controller with kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v0.44.0/deploy/static/provider/cloud/deploy.yaml But im unable to create it. I have tried…

VIEW QUESTION
Back To Top
Search