Make sample config just have the HS config

The other options are things people usually won't need or want to
set, so just keep it to the basics.

 * Rename config sample to match element-web
 * Update / simplify build instructions
 * Rename nginx config file to differentiate it from EC config
This commit is contained in:
David Baker
2022-12-20 18:13:08 +00:00
parent e4c25bcc69
commit 19e478f2a9
6 changed files with 18 additions and 19 deletions

10
config/nginx.conf Normal file
View File

@@ -0,0 +1,10 @@
server {
listen 8080;
server_name localhost;
location / {
root /app;
try_files $uri /$uri /index.html;
}
}