Answer the question
In order to leave comments, you need to log in
nginx folder path
So there is a folder with the deberc game in the deberc user directory:
/home/deberc/deberc
This folder has an interface folder that contains styles, scripts and graphics.
There is a return for example css styles:
location /~*\.css$ {
root /home/deberc/deberc/interface/style;
}
Answer the question
In order to leave comments, you need to log in
how it worked like this:
location ~ ^/deberc/(.+\.(?:gif|jpg|jpeg|png|js|css))$ {
alias /home/deberc/deberc/interface/$1;
}
Something like this:
location ~ \/deberc\/(.+)\.css$ {
root /home/deberc/deberc/interface/style;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question