Re: [users@httpd] Is it true that Nginx is faster, more secure and better than Apache?

2023-09-30 Thread Daniel Ferradal
> >> Why are they trollish? I am curious to learn more. >> >> Perhaps because you asked the same question in 2021, you got a very constructive response and still you are asking the same thing two years later... -- Daniel Ferradal HTTPD Project #httpd help at Libera.Chat

Re: [users@httpd] Is it true that Nginx is faster, more secure and better than Apache?

2023-09-30 Thread Frank Gingras
There might be some online, however, due to the different architectures, they are not likely to be terribly useful. Do avoid the ones that bash needlessly either product. On Sat, Sep 30, 2023 at 3:09 AM Jason Long wrote: > Hello, > Thank you so much for your info. > Why are they trollish? I am

Re: [users@httpd] Is it true that Nginx is faster, more secure and better than Apache?

2023-09-30 Thread Jason Long
Hello, Thank you so much for your info. Why are they trollish? I am curious to learn more. Is there a fair comparison between Apache and Nginx? On Saturday, September 30, 2023 at 10:35:12 AM GMT+3:30, Frank Gingras wrote: Additionally, your recent string of questions to this mailing

Re: [users@httpd] Is it true that Nginx is faster, more secure and better than Apache?

2023-09-30 Thread Frank Gingras
Additionally, your recent string of questions to this mailing list come off as a bit trollish. On Sat, Sep 30, 2023 at 3:04 AM Frank Gingras wrote: > If any of the mod_php extensions are not thread-safe, you will need to use > the prefork mpm, which will indeed bloat every httpd worker. This is

Re: [users@httpd] Is it true that Nginx is faster, more secure and better than Apache?

2023-09-30 Thread Frank Gingras
If any of the mod_php extensions are not thread-safe, you will need to use the prefork mpm, which will indeed bloat every httpd worker. This is not the ideal nor recommended configuration. Instead, use the event mpm and proxy_fcgi to pass the request to php-fpm. Alternatively, you can recompile

[users@httpd] Is it true that Nginx is faster, more secure and better than Apache?

2023-09-30 Thread Jason Long
Hello, Is the following sentence correct? "The way Apache loads PHP in its standard setup (with mod_php) compared to Nginx alone puts it at a disadvantage. You will see performance gains, particularly in memory usage, just by switching to Nginx, given you're using a PHP-driven application."