nginx/nginx.conf
2022-06-05 22:41:19 +05:30

9 lines
75 B
Nginx Configuration File

server {
server_name app;
listen 8080;
location / {
root /html;
}
}