Skip to content

HasHolding/Nginx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Nginx

docker run -ti -v /demo:/shared -e CONF=/shared/etc/local.conf -p 80:80 ngx

\demo ├───etc └───www


local.conf

server { listen 80; server_name localhost;

location / {
    root   /shared/www;
    index  index.html index.htm;
}

}


index.html

<title>Demo</title> Demo