openreplay/frontend/nginx.conf
rjshrjndrn 22a452410b chore(docker): change nginx listen port to 8080
Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
2022-07-21 17:31:48 +02:00

9 lines
174 B
Nginx Configuration File

server {
listen 8080 default_server;
listen [::]:8080 default_server;
root /var/www/openreplay;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}