cskj / nginx.conf
wixcs's picture
Create nginx.conf
b4a05c1 verified
raw
history blame
192 Bytes
events { }
http {
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}
}