: This article mainly introduces how to use Nginx as an http file server in Windows (Permission question ?), If you are interested in the PHP Tutorial, refer. The Nginx version used here comes from the latest OpenResty.
Nginx. conf:
Server {listen 8000; server_name chenzx alias chenzx. localhost; location/{root f:/; autoindex on; # index index.html index.htm ;}}
No solution can be found on the Internet (is Nginx inherently used in Linux ?)
C: \ ngx_openresty-1.9.7.1-win32> nginx.exe
Start nginx directly through the command line and cannot end with Ctrl + Z/C ~~~ Pitfall
Nginx needs to start with start nginx in windows, and then you can run nginx-s stop to end the process.
The above introduces that Nginx cannot be used as an http file server in Windows (Permission question ?), Including some content, hope to be helpful to friends who are interested in PHP tutorials.