Skip to content

Instantly share code, notes, and snippets.

@drucoder
Created May 25, 2018 15:41
Show Gist options
  • Save drucoder/3330265ee65ab3b41386f52808cd0156 to your computer and use it in GitHub Desktop.
Save drucoder/3330265ee65ab3b41386f52808cd0156 to your computer and use it in GitHub Desktop.
Spring Boot. Быстрый старт: deploy на сервер
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://localhost:8080;
}
location /img/ {
alias /home/dru/uploads/;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment