Skip to content

Jesion/angularjs-mpa-skeleton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angularjs-mpa-skeleton

AngularJS Multi Page Application Skeleton

required nginx server settings

server {
        listen       80;
        server_name  localhost;

        if ( $request_filename ~ /index.html ) {
            rewrite ^ http://localhost/signin.html permanent;
        }

        location / {
            root   html/app;
            index  index.html;
        }

        location /signin {
            root html/app/modules/signin;
        }

        location /home {
            root html/app/modules/home;
        }
}

About

AngularJS Multi Page Application Skeleton

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published