Re: [Cppcms-users] apache configuration
Brought to you by:
artyom-beilis
From: Artyom B. <art...@gm...> - 2016-01-18 11:55:59
|
Note: This > ScriptAliasMatch ^/myweb(.*)$ /opt/app/bin/mywebdata/mywebapp/myweb$1 And this > RewriteRule ^/(.*)$ /mywebapp/myweb$1 [QSA,L] I think it should be: RewriteRule ^/(.*)$ /myweb$1 [QSA,L] Also you have forgotten very-very important option: FastCGIConfig -maxProcesses 1 -processSlack 1 Artyom |