ansible

Log | Files | Refs | README

learningunix.net.conf (203B)


      1 server {
      2     listen 80;
      3     listen [::]:80;
      4     server_name learningunix.net;
      5 
      6     root /var/www/learningunix.net/html;
      7     index index.html;
      8 
      9     location / {
     10         try_files $uri $uri/ =404;
     11     }
     12 }