awesome-compose/samples/react-express-mysql/frontend/config/nginx.conf
Anca Iordache 43f21f2d8d add react-express-mysql application sample
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2020-03-05 18:40:44 +01:00

10 lines
161 B
Nginx Configuration File
Executable File

server {
listen 9000;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}