testdocker / nginx.conf
Mediocreatmybest's picture
Create nginx.conf
c590d22
raw
history blame
No virus
137 Bytes
http {
server {
listen 3000;
location / {
alias /var/www/html/;
index index.html;
}
}
}