Portfolio/nginx.conf
Matthew L McPeak 55e585186e
Some checks failed
Build and publish Docker image / build (pull_request) Has been cancelled
Build and publish Docker image / docker (pull_request) Has been cancelled
feat: docker
2026-06-10 17:03:17 -04:00

10 lines
165 B
Nginx Configuration File

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