mirror of
https://github.com/element-hq/element-call.git
synced 2026-03-29 13:10:30 +00:00
11 lines
150 B
Plaintext
11 lines
150 B
Plaintext
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /app;
|
|
try_files $uri /$uri /index.html;
|
|
}
|
|
}
|
|
|