Reputation: 1866
Is it possible to use amazon s3 to serve angular 2 app without using a dedicated server. If so how to proceed ?
Upvotes: 14
Views: 10450
Reputation: 5528
Yes, you can deploy an application to AmazonS3 but you shouldn't serve it directly from Amazon S3: S3 is a Storing Service, not a Distribution Service. That's why you should create a CloudFront distribution for your S3 bucket.
Steps:
Build your app with npm run build --prod
(be careful of including the --prod
option!)
Create a CloudFront distribution for your Amazon S3 bucket and set your Default Root Object
to index.html
If you use url rewrite and not hash strategy (your paths look like http://yourwebsite/login
and not http://yourwebsite/#/login
create a custom error response for your CloudFront distribution with the following:
HTTP Error Code: 404
Error Caching Minimum TTL (seconds): 0
You need also to be careful when you deploy your application to Invalidate index.html on CloudFront, otherwise an old version is cached and will be served to the client.
Please follow my guide for more details.
Upvotes: 14
Reputation: 1377
It is possible. But then you should use webpack.
After you configure your app to work with webpack, you can npm run build
and upload the processed files to S3 as a static website.
Upvotes: 8
Reputation: 18699
No, it is not possible to run angular2 using amazon s3 without dedicated server. According to Angular2 Docs, you need at least little server to run those files. What you can do, is to run NodeJs server on E3 or ESB, and deploy your angular2 app there.
Thanks to @Gunter for pointing out - this can't be done without additional command line parameters.
Upvotes: -11