I built my project with Angular Universal succecced, i had the next folders:
Browser, Assets, Server
I copied all files from dist to my work package on a server, where before good worked my angular web site without SSR. After that I try to connect with my web-site through a browser and to get old my web-site without SSR.
I tried to find docs about what I should to do for launch my site on the server but found nothing. Please share with me information, what I should to do next for to see angular SSR web-site.
Step 1
You need to modify your angular.json (outputPath) file before building. Use "dist/projectName/server" path. Let replace "projectName" to your project's name.
}
Step 2 Build your application using the following command:
Step 3 You need to install 2 things on your server
IIS Node I installed old version for IIS 7-8, but i have IIS 10. All work. But need choose correct bitness(x64 or x86). New version - haven't, don't need to seek.
Step 4 Create a web-site if you still haven't in IIS. After npm build you will have two folders:
browser folder copy to your web-site folder. Server folder -need copy only files and paste in your web-site folder. ("web.config" you will create at the next step.)Look the example below:
Step 5 Create web.config with the next code:
Look at the line below. The line is neccessary else your web site will get error:
The iisnode module is unable to start the node.exe process. Make sure the node.exe executable is available at the location specified in the system.webServer/iisnode/@nodeProcessCommandLine element of web.config. By default node.exe is expected in one of the directories listed in the PATH environment variable.
Step 6 In the IIS, go to Application Pools folder -->Add Aplication Pool: Write name of web-site and in ".CLR version" choose "No managed code" . After that you need to choose your web-site in IIS -->Advanced settings-->Application pool and here need to choose our new pool with no managed code option.
Step 7 In this step need to give full permission for our folder. In file explorer open our web-site folder. Right click in folder--> Properties -->Security. Choose IIS_IUSRS-->Edit-->Full Control-->Ok
Step 8(optional) In server.ts file need to change the path in const distFolder:(change YOURPROJECTNAME to your project name)
To (it will work only production mode)
or create new const (it will work for production mode and test(not sure))
and replace distFolder in the next line below to new const websiteFileLocation
After that all done!