Skip to content
Snippets Groups Projects
nginx.conf.template 229 B
Newer Older
  • Learn to ignore specific revisions
  •     listen 8080;
    
        server_name _;
        root /usr/share/nginx/html/;
    
    
        location /admin/ {
            try_files $uri$args /admin/index.html;
    
    
    FORESTIER Fabien's avatar
    FORESTIER Fabien committed
    
        location / {
    
    	rewrite_by_lua '
    		ngx.redirect("/admin/")
    	';
       }