ao dar o comando nginx -s reload aparece a mensagem: nginx: [error] ReadFile() "C:/nginx/servers/.." failed (1: Incorrect function)
no arquivo de logs aparece a mesma coisa sem mais detalhes
esse é o meu nginx.conf:
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
include C:/nginx/servers/*;
}
e esse é o meu default.conf que está dentro da pasta servers:
server{
listen 8080;
server_name localhost;
location / {
root C:/Users/002545631/Documents/estudos/nginx;
index index.html;
}
}
Agradeço caso possam me ajudar!