Skip to content

Instantly share code, notes, and snippets.

@edvaldoszy
Created December 20, 2021 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edvaldoszy/72bc681812dfe20277bc2da80f4d9c60 to your computer and use it in GitHub Desktop.
Save edvaldoszy/72bc681812dfe20277bc2da80f4d9c60 to your computer and use it in GitHub Desktop.
Configuração padrão do NGINX
# /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