NGINX.CONF configuration:
Add to:
server { listen default_server; server_name static.test.com; Location/{ proxy_set_header Host $host; Proxy_set_header x-forwarded-for $remote _addr; Root d:/java/static/back; } } server { listen ; server_name page.test.com; Location/{ proxy_set_header Host $host; Proxy_set_header x-forwarded-for $remote _addr; Root d:/java/static/app; } } server { listen ; server_name test.test.com; Location/{ proxy_set_header Host $host; Proxy_set_header x-forwarded-for $remote _addr; Root d:/java/static/test; } }
Hosts add
127.0.0.1 localhost test.test.com page.test.com static.test.com
Put a test picture in each directory and access the test through a URL.
Test access appears 404!
Through the Task Manager to find the Nginx process a lot more, and kill not die!!!
Restart
.....
Nginx startup is two processes, configure the update to ensure that the effective, kill kill, and then start.
The above describes the Nginx static resource configuration, including the nginx aspects of the content, I hope that the PHP tutorial interested in a friend helpful.