1
0
mirror of https://github.com/docker/awesome-compose.git synced 2025-07-04 11:32:55 +00:00
awesome-compose/samples/react-java-mysql/frontend/config/nginx.conf
Anca Iordache 3a23aa59d2 add react-java-mysql application sample
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
2020-03-05 19:02:53 +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;
}
}