adding in initial nginx docker

This commit is contained in:
talksik
2023-08-14 10:01:33 -07:00
parent cf0deb2d60
commit 6abbc9d5ef
3 changed files with 42 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# nginx.conf for a basic web server
events {}
http {
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}
}