Reputation: 441
When i use my mac, i installed by brew. And it made all command usable every where
But, chocolatey does not allow windows to install NGINX.
So i downloaded under the C: and unzipped it.
Unlike Mac, i can't use NGINX or NGINX -s reload.
I think the 'bin' folder should be located in window 'PATH', but i could not know where it is.
When i order 'NGINX', cmd returns NGINX is not internal or external command.
How can i use these commands? Even though, Windows' directory tree is not similar with Mac's
Upvotes: 2
Views: 10586
Reputation: 116
If you download the nginx binary package from nginx website,when you unpacked it,there was no bin
folder in it.The executable application is nginx.exe.The following is what looks like if you use ls
command in the nginx directory.
C:\nginx-1.8.1>ls -1
conf
contrib
docs
html
logs
nginx.exe
temp
Upvotes: 2