Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the following nginx configuration, which is supposed to serve the index.html file to both www.domain.com and domain.com. While www.domain.com works, domain.com returns the default nginx welcome page. What am I doing wrong?

server {
listen              80;
listen              [::]:80;
server_name         domain.com www.domain.com;
root /home/ubuntu/coming-soon-page/frontend/react_ui/build;

location = /favicon.ico {
    access_log off; log_not_found off;
}

error_page 403 /home/ubuntu/coming-soon-page/frontend/react_ui/build/index.html;

location / {
    root /home/ubuntu/coming-soon-page/frontend/react_ui/build/;
    index index.html;

    try_files $uri $uri/ /index.html;
}

location = /submit_user_feedback {
    include proxy_params;
    proxy_pass http://unix:/home/ubuntu/coming-soon-page/backend/api/api.sock;
}

}

question from:https://stackoverflow.com/questions/65881597/nginx-does-not-serve-to-non-www-domain

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...