I\'m trying to set up Nginx on my Windows development environment. I can\'t find how to create something similar to \"sites-enabled\" on Linux where Nginx would
You can include your config with a relative path in your nginx.config (the relative path is just the path of the config file itself in contrast to the logs path for example):
http {
include mime.types;
default_type application/octet-stream;
include ../sites-enabled/*.conf;
...
}