Worldskills 2024
Menu
Deployment
EC2
ECR
EKS
Serverless
Other
Utility
Best Practices
Home
CLI
Linux
nginx
userdata
0 Clicks
nginx.conf /etc/nginx/nginx.conf
Copy
events {} http { server { listen 8080; location /server01/ { proxy_pass http://localhost:80/; } } }
Dockerfile for binary
Copy
FROM golang:latest COPY . . CMD ["./unicorn-server"]
Dockerfile for nginx
Copy
FROM nginx:latest COPY nginx.conf /etc/nginx/nginx.conf