-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
bugSomething isn't workingSomething isn't working
Description
server.conf
server {
ip 127.0.0.1;
listen 8080;
location / {
methods GET;
root www; #Le problème
listing true;
}
}
Target URL
http://localhost:8080
Result
404
server.conf
server {
ip 127.0.0.1;
listen 8080;
location / {
methods GET;
root www/; #Le problème
listing true;
}
}
Target URL
http://localhost:8080
Result
200
Dans root nous devons absolument mettre un / à la fin du path, sinon c'est une erreur 404. Sois il faut que se soit clairement noté quelque par, soit il faut trouver une solution pour que si le programme ne trouve par de fichier www il cherche un dossier www.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working