Skip to content

Instantly share code, notes, and snippets.

@MiguhRuiz
Created September 4, 2016 17:05
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 MiguhRuiz/82ea33e81c71f695790d54a0ba94e19b to your computer and use it in GitHub Desktop.
Save MiguhRuiz/82ea33e81c71f695790d54a0ba94e19b to your computer and use it in GitHub Desktop.
Serve a Hello World in NGINX
server {
listen 80;
server_name prueba.miguhruiz.xyz;
location / {
root /home/MiguhRuiz;
index index.html;
}
}
<h1>Hello World</h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment