How to rewrite those locations?

#1
Hi, I'm new in lightspeed and going to migrate from nginx. What steps i need to done to get work this locations in litespeed at my project folder:
1
location ~* \.(?:json)$ {
add_header Access-Control-Allow-Origin *;
}
2
location / {
try_files $uri $uri/ /index.php?$args;
}
3
location /uploads/ {
root /var/www/project;
}
 
Top