Home > Article > Backend Development > nginx reverse proxy settings
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Reak-IP $remote_addr;
}
"/" means Match all access paths
Copyright statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.
The above introduces the nginx reverse proxy settings, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.