feat: containerize backend and frontend services

This commit is contained in:
ramvignesh-b
2026-04-22 19:14:21 +05:30
parent 59ea95a912
commit a986878a3b
5 changed files with 73 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
pid /tmp/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
access_log /tmp/access.log;
error_log /tmp/error.log;
server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}
}