Skip to content

Instantly share code, notes, and snippets.

@javecs
Created April 8, 2017 06:17
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 javecs/349519b7d6ab07f2452ee5f5ffaa511b to your computer and use it in GitHub Desktop.
Save javecs/349519b7d6ab07f2452ee5f5ffaa511b to your computer and use it in GitHub Desktop.
Lightsailの設定
  • /etc/nginx/conf.d/virtual.conf
server {
    server_name  demo.javecs.xyz;
    location / {
        proxy_pass http://127.0.0.1:8080;
    }
}

server {
    server_name  calc.javecs.xyz;
    location / {
        proxy_pass http://127.0.0.1:8090;
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment