I am getting this error:
The site you requested does not have an associated route in Local.
If you continue to get this message after refreshing, try restarting the Local site.
If the error persists, check the Local Router Logs in Local by going to
Help » Reveal Local Router’s Logs.
I tried checking on the *route file:
server {
server_name 123.local *.123.local;
include server-block.conf;
location / {
proxy_pass http://127.0.0.1:10004;
include location-block.conf;
}
}
server {
server_name 123.local *.123.local;
ssl_certificate ../certs/123.local.crt;
ssl_certificate_key ../certs/123.local.key;
include server-block-ssl.conf;
location / {
proxy_pass http://127.0.0.1:10004;
include location-block.conf;
}
}
But it is not working.
Please help