Changes between Version 14 and Version 15 of HostingServerSetupRecommendations
- Timestamp:
- Aug 30, 2010, 5:32:51 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HostingServerSetupRecommendations
v14 v15 83 83 This setup considered to be secured, because in case of hacking attempt it is possible to upload files to nobody directory only and modify nobody files only, no risk to overwrite or modify index.php file for example (if it has correct permissions) 84 84 85 '''Advantages:''' 85 __Advantages:__ 86 86 * speed 87 87 * security … … 90 90 91 91 92 '''Disadvantages:''' 92 __Disadvantages:__ 93 93 * maybe insecure on shared hosting 94 94 95 '''Conclusion:'''if you already have such setup it is ok to leave it, but consider to install opcode cache extension.95 __Conclusion:__ if you already have such setup it is ok to leave it, but consider to install opcode cache extension. 96 96 97 97 === CGI/suPHP === … … 105 105 This is used on shared hosting to separate users from each other, so it is considered to be safe on shared hosting environment. But when attacker get access to your server - access to all files is open, any file can be modified/removed in any folder, so it maybe more dangerous result in case of hack attempt. 106 106 107 '''Advantages:''' 107 __Advantages:__ 108 108 * all files are always handled under one owner, so you don't need to bother about files permissions 109 109 * PHP settings can be changed without web-server reload 110 110 111 '''Disadvantages:''' 111 __Disadvantages:__ 112 112 * slow 113 113 * opcode cache extensions are not supported 114 114 * insecure 115 115 116 '''Conclusion:'''it is better to switch to another setup if you have VPS or dedicated server. If you are on shared hosting try to ask to move your account to another server with another setup. If you have no choice - try to lower number of accesses to webserver: you can do it by uninstalling the following modules in Dolphin (they make periodic lightweight request to web-server): messenger, simple messenger, spy and disable floating member menu. Or at least increase time between requests.116 __Conclusion:__ it is better to switch to another setup if you have VPS or dedicated server. If you are on shared hosting try to ask to move your account to another server with another setup. If you have no choice - try to lower number of accesses to webserver: you can do it by uninstalling the following modules in Dolphin (they make periodic lightweight request to web-server): messenger, simple messenger, spy and disable floating member menu. Or at least increase time between requests. 117 117 118 118 === FastCGI ===