nginx-configuration

Installation
SKILL.md

Nginx Configuration

Production-ready Nginx configurations for modern web applications.

Basic SPA Configuration

# /etc/nginx/sites-available/spa
server {
    listen 80;
    server_name example.com;
    root /var/www/html;
    index index.html;

    # SPA routing - redirect all to index.html
    location / {
        try_files $uri $uri/ /index.html;
    }
Installs
2
First Seen
Jan 26, 2026
nginx-configuration — simon-jarillo/prueba-skills