Skip to content

Nginx config file for dev enviroment

hakon-sognen edited this page Sep 2, 2015 · 5 revisions
   http { 
      ... 
      server{   
         ...
         location / {
            root   /path/to/code/fnlf-client;
            index  index.html index.htm;
         } 
         location /api {
            proxy_pass https://api.server.url.no;
         }
       ...
       }
      ... 
   }

Clone this wiki locally