آموزش ساده و سریع کانفیگ سرور اوبونتو با انجین‌اکس

2089 روز پیش

بعد از مدت‌ها کار با آپاچی به دلیل نیازی که در سرشمار برای بهبود عملکرد پیش اومد از انجین‌اکس به‌عنوان وب‌سرور استفاده کردیم و با توجه به کمبود همیشگی منابع آموزشی، در این مطلب قصد دارم نحوه‌ی راه‌اندازی ساده و سریع یک سرور اوبونتو با وب‌سرور انجین‌اکس رو به همراه نصب پی‌اچ‌پی و مای‌اس‌کیو‌ال و پی‌اچ‌پی مای‌ادمین آموزش بدم.

بازم چون معرفی مناسب پیدا نکردم میتونید فعلا متن انگلیسی زیر رو بخونید ولی آموزش فارسی هست:)

Nginx can be deployed to serve dynamic HTTP content on the network using FastCGI, SCGI handlers for scripts, WSGI application servers or Phusion Passenger modules, and it can serve as a software load balancer.

Nginx was written with an explicit goal of outperforming the Apache web server. Out of the box, serving static files, Nginx uses dramatically less memory than Apache, and can handle roughly four times more requests per second. This performance boost comes at a cost of decreased flexibility, such as the ability to override systemwide access settings on a per-file basis (Apache accomplishes this with an .htaccess file, while Nginx has no such feature built in).Formerly, adding third party modules to nginx required recompiling the application from source with the modules statically linked. This was partially overcome in version 1.9.11 with the addition of dynamic module loading. However, the modules still must be compiled at the same time as nginx, and not all modules are compatible with this system; those require the older static linking process.

 

ادامه دارد »»»