Skip to content

Instantly share code, notes, and snippets.

@martip07
Created February 4, 2019 20:21
Show Gist options
  • Save martip07/c82af51d10f2b1cf76d7150134a4ec4b to your computer and use it in GitHub Desktop.
Save martip07/c82af51d10f2b1cf76d7150134a4ec4b to your computer and use it in GitHub Desktop.
ayuda-nginxapp1-2
ip-privada cualquiernombre
server {
listen 80;
server_name blablabala;
root ruta-app1;
location / {
configuracion que tengas;
}
}
server {
listen 80; -> puede variar con el puerto que quieraas
server_name cualquiernombre;
root ruta-app2;
location / {
configuracion que tengas
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment