Question

How to stop nginx for windows?

I can't stop the nginx server on windows. I've tried: nginx -s stop, taskkill /if nginx.exe, and end process via task manager, yet it's still running!

 46  107185  46
1 Jan 1970

Solution

 68

Use @taskkill /f /im nginx.exe for this task.

2020-01-06

Solution

 56

You can stop using quit

nginx.exe -s quit

2020-01-07