Files
Portfolio-Project/nginx.conf
copilot-swe-agent[bot] 2a1c07f8ff Add nginx stage for Docker build
Co-authored-by: coolestcoder655 <74312880+coolestcoder655@users.noreply.github.com>
2026-01-02 02:01:02 +00:00

12 lines
166 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}