Answers for "nginx port to subdomain"

0

nginx port to subdomain

server {
    listen 80;
    server_name sub.example.com;

    location / {
        proxy_pass http://localhost:8080;
    }   
}
Posted by: Guest on March-21-2022

Browse Popular Code Answers by Language