Book Image

PHP 7 Programming Blueprints

By : Jose Palala, Martin Helmich
Book Image

PHP 7 Programming Blueprints

By: Jose Palala, Martin Helmich

Overview of this book

When it comes to modern web development, performance is everything. The latest version of PHP has been improvised and updated to make it easier to build for performance, improved engine execution, better memory usage, and a new and extended set of tools. If you’re a web developer, what’s not to love? This guide will show you how to make full use of PHP 7 with a range of practical projects that will not only teach you the principles, but also show you how to put them into practice. It will push and extend your skills, helping you to become a more confident and fluent PHP developer. You’ll find out how to build a social newsletter service, a simple blog with a search capability using Elasticsearch, as well as a chat application. We’ll also show you how to create a RESTful web service, a database class to manage a shopping cart on an e-commerce site and how to build an asynchronous microservice architecture. With further guidance on using reactive extensions in PHP, we’re sure that you’ll find everything you need to take full advantage of PHP 7. So dive in now!
Table of Contents (15 chapters)
PHP 7 Programming Blueprints
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
4
Build a Simple Blog with Search Capability using Elasticsearch

Accessing your application via the web server


In our development setup, we're currently running two containers, the application container itself, listening on port 8080 and an Nginx server listening on port 80 that serves static files such as the index.html and various CSS and JavaScript files. Exposing two different ports for static files and the application itself is often not recommendable in a production setup.

Because of this, we will now configure our web server container to serve a static file, when it's present (such as the index.html or CSS and JavaScript files), and to delegate the HTTP request to the application container when no actual file with the given name exists. For this, start by creating an Nginx configuration file that you can place anywhere in your project directory-for example, etc/nginx.conf:

map $http_upgrade $connection_upgrade { 
    default upgrade; 
    '' close; 
} 
 
server { 
    location / { 
        root /var/www; 
        try_files $uri $uri/index.html @phpsite...