Created
December 20, 2021 14:16
-
-
Save edvaldoszy/72bc681812dfe20277bc2da80f4d9c60 to your computer and use it in GitHub Desktop.
Configuração padrão do NGINX
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
# /etc/nginx/conf.d/default.conf | |
server { | |
listen 80; | |
server_name localhost; | |
... | |
location / { | |
root /usr/share/nginx/html; | |
index index.html index.htm; | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment