Moving catalyst framework project to another server

巧了我就是萌 提交于 2020-01-15 16:08:30

问题


I had moved my Perl catalyst framework project files from my old server to a new one. I have moved each and every file but when I take the url its showing up 404 error. Is there anything else I need to do when the files are moved? Please let me know as its the 1st time I am doing it.

Thanks Jitesh


回答1:


You need to update the web server, if there is one. Your application was either running as a standalone app with its own PSGI server, or with another PSGI server like Starman, or through an FCGI handler with a web server like Apache, or as CGI. In all cases, you need to move that piece of infrastructure to the new physical server computer.

See Catalyst::Manual::Deployment for infos.

I also suggest to look for documentation of your project that any predecessors might have written, or ask your local sysadmin.



来源:https://stackoverflow.com/questions/31652260/moving-catalyst-framework-project-to-another-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!