Since AMPPS has Softaculous. I was thinking of using AMPPS as a production server. I know it is meant for development purpose only. What can be the risk, I want to know. Thanks in advance.
AMPPS as a production server?
1.7k Views Asked by Stuart Martins At
2
There are 2 best solutions below
Related Questions in APACHE
- Special access rule in an .htaccess file for IP addresses, authorized only for one directory structure
- How to isolate PHP apps from each other on a local machine(Windows or Linux)?
- Cannot load modules/mod_dav_svn.so into server
- How to ignore case in regexp mapping in a .htaccess rewrite rule?
- Oracle Http server ISNT-07551
- I cant access file directory with PHP local host on XAMPP. it just shows one of the files I have in my visual studio code
- Apache Reverse Proxy: only one proxy directive is working. Second one is ignored
- Issue with Django --> Apache WSGI deployment
- changing the node version used by apache web server
- Apache: How can I redirect to a subfolder with a URL param but serve required content via the main URL?
- Why/How does Apache auto-include "DHE" TLS1.2 ciphers while nginx needs "dhparams" file?
- Set up MX records in apache/Ubuntu to point to external mail server
- How to proxy to another port?
- Php can not upload file out of /var/www/html even after disabling Selinux
- Serve static site on S3 + CloudFlare with Apache retaining the source URL
Related Questions in SCRIPTING
- How do I react to external program launch inside an Automator workflow?
- can anyone help me for NSIS Script I have a case where I need to check cases can be 3.3 3.42 23.5 23.56w 3.467 999.999 999.99a but not 1.b or 8..a
- How do I restart a batch file in PowerShell?
- Trouble updating a Field in Salesforce via a Python Script
- What are JCL Alternitives for Embeded Applications?
- grep expression behaving weird (unix/mac) while reading a conf file
- Why is my bash script showing [2: command not found?
- How can I modify my code to negate this error?
- Find Specified Software - Powershell
- how to change Value to something specific and not add to it?
- How can I run this Powershell function from a batch file on windows?
- How to make toggle key to switch between two seperate functions lua script(logitech)
- My quiz automatically submits when i plug in a chrome extension that involves doing an api call
- How to "make" a variable that contains another variable value?
- function not recognizable inside scriptblock in PowerShell script
Related Questions in WAMP
- PHP & LDAPS : cant connect to AD
- Sending an email with wamp
- Big files take unjustly long time to submit from the form Laravel PHP
- Wampserver is not displaying images or videos. Permission issue?
- Why wamp server doesn't work on localhost?
- Mysql server not starting without Xamp or Wampserver, How to Use a Common Database for all
- i want to fix one error for configure the iomad using wamp server
- The website works fine with certificat HTTPS inside the virtual machine (VM) but not outside
- Wamp server error message: The process cannot access the file because it is being used by another process
- How to increase phpmyadmin upload filesize limit in wampserver?
- phalcon and phalcon devtools installation issue in windows 10
- I tried to PHP Server: Serve but it doesn't start
- Running into performance problems - MySQL shows CPU 100%
- "pecl http" php extension can't be loaded in local (xampp/wampp)
- Display html img located in network drive
Related Questions in SOFTACULOUS
- softaculous installation of orangehrm error
- Moodle Softaculous Installation: MySQL Syntax error
- How to set up email with a gmail account from codeigniter now that Google has disabled "less secure app" setting?
- Error 404 after migrating laravel 8 to a shared host
- URL shows subdirectory named 'en' although it is not in the public_html
- WordPress site cannot be reached after installation in CPanel with Softaculous
- Laravel fresh installation via softaculous - File not found
- Install Ioncube Loader on an Ubuntu 16.04 server
- Install custom package from softaculous by API PHP
- Edit MySQL table in a Symfony project hosted [SOFTACULOUS]
- Softaculous start symfony app
- programmatically install themes with php in softaculous
- Sugarcrm not a valid entry method
- How does Softaculous create a MySQL database, user, and user->db mapping in cPanel?
- File deleted as soon as uploaded
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
With packages like this, the default is often "everything on" to allow people with little experience to go download it and get wordpress,silverstripe etc up and running as fast as they can.
For production servers, the recommended way to go about things is the other way round, just enabling the things you ned to get the job done and turning off the rest. If you've 35 apache modules and 26 php modules running then that's a lot of extra code to slow your server down and expose more vulnerabilities. More software running means more patching, more watching for holes and sometimes less in terms of performance.
Think of these packages like ampps and mamp as playgrounds for coders. You could deploy them on a production server and they would most likely be fine but stable networks and secure systems require a more vigilant approach to building a production web server.
Once you've built your application, if you can find out what are its minimum requirements are in terms of apache php etc and then install just what it needs, you might find it more manageable in the long run.
It's convenience vs security as ever!