Last active
March 31, 2025 17:08
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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