Hi,
I created a multisite, 3 languages: default, fr and nl.
Works under Valet.
Did all necessary modifications to nginx.conf under forge
Problem: the css's and js's not showing up
My nginx.conf under forge
```location /cp {
break;
}
location /index.php/_resources/ {
break;
}
location @frrewrites {
rewrite ^/fr/(.*)$ /fr/index.php last;
}
location /fr {
try_files $uri $uri/ @frrewrites;
}
location @nlrewrites {
rewrite ^/nl/(.*)$ /nl/index.php last;
}
location /nl {
try_files $uri $uri/ @nlrewrites;
}```
I guess there must be something wrong with locations because I get a 404 on all the css and js files (and also on the add-ons)