Skip to content

Instantly share code, notes, and snippets.

@SalcidoJesus
Last active March 31, 2025 17:08
Show Gist options
  • Save SalcidoJesus/edbcca94666a907d206771cfaa173f86 to your computer and use it in GitHub Desktop.
Save SalcidoJesus/edbcca94666a907d206771cfaa173f86 to your computer and use it in GitHub Desktop.
Configuración básica de Nginx para puerto 8001 (materia de sistemas operativos)
server {
listen 8001;
server_name _;
root /var/www/html/pagina1;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment