User bio
404 bio not found
Member since Nov 4, 2015
Posts:
Replies:
Thank you Ariel!
Hi Jignesh,
What is your context? Are you working with Kubernets?
I think the answer is it depends. While nginx can do reverse proxy it might not be on a par with Traefik and all its management layer within a K8s context.
nginx example FYI & FWIW
server { listen 8080; location / { deny all; } location /csp/sys/ { proxy_pass http://iris:52773; } location /api/monitor/ { proxy_pass http://iris:52773; } proxy_hide_header WWW-Authenticate; }
Open Exchange applications:
Certifications & Credly badges:
Luca has no Certifications & Credly badges yet.
Global Masters badges:
Followers:
Following:
John,
it looks like you are on AWS and you selected an AMI, most probably the default one, that offers AWS Linux distribution. It is a downstream of Fedora. We don't support it officially so pick and AMI with Ubuntu and Red hat.
wrt context: you'll find that in general the cloud runs on Linux. You'll get used to automate procedures with scripts and a plethora of tools that are available in the industry like bash, Terraform, Ansible or any config.management tool of your liking.
HTH