Files
rc-portfolio/nginx.conf

16 lines
280 B
Nginx Configuration File
Raw Normal View History

2025-02-21 15:11:56 -05:00
server {
listen 80;
server_name localhost;
# Set the root directory for the application
root /usr/share/nginx/html;
# Default index file
index index.html;
# Handle routes with Angular's HTML5 mode
location / {
try_files $uri $uri/ /index.html =404;
}
}