http.conf.off 360 B

123456789101112131415161718
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. server_name localhost
  5. # for real application, put your server name here
  6. #server_name your.server.name ie. merlin.fmf.uni-lj.si
  7. error_page 500 502 503 504 /50x.html;
  8. location = /50x.html {
  9. root /usr/share/nginx/html;
  10. }
  11. location /{
  12. root /var/www/landing;
  13. }
  14. }