How not to access directly with the root domain name
How not to access directly with the root domain name?What I want just like this:
sn.doamin.com = the web version of standard notes sn.domain.com/api = the login api for standardfile
I want to use sn.doamin.com for the web version of standard notes, not for the dashboard of standardfile.
Hi, here is an example for caddy from my server
example.com {
log /var/log/caddy.log
root /var/www/html
gzip
proxy /api localhost:8888 {
transparent
}
cors / {
origin *
methods GET,POST,PUT,PATCH,DELETE,OPTIONS
allow_credentials true
exposed_headers Access-Token,Client,UID
allowed_headers Authorization,Content-Type
}
}
That way standardfile will only answer on /api routes
@tectiv3 I am very grateful for this, but I mainly use nginx now, I apologize for not making it clear in the issue sincerely.
I am not familiar with caddy. Could you help me write a configuration file for nginx?
And thank you for making this project. It help me a lot.