mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-24 00:38:31 +08:00
19e478f2a9
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
11 lines
150 B
Nginx Configuration File
11 lines
150 B
Nginx Configuration File
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /app;
|
|
try_files $uri /$uri /index.html;
|
|
}
|
|
}
|
|
|