edthamm

Nginx simple config

Nov 30th, 2018
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.32 KB | None | 0 0
  1. events {}
  2. http {
  3.     server {
  4.         root /var/www;                                                                                                              
  5.         location / {
  6.             proxy_pass http://localhost:8080;
  7.         }
  8.         location /status.html {
  9.             root /status.html;
  10.         }
  11.     }
  12. }
Advertisement