mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-30 00:50:48 +08:00
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;
|
||
|
}
|
||
|
}
|
||
|
|