search
HomePHP FrameworkLaravelQuick installation steps for Nginx + PHP + MySQL under Ubuntu

How to deploy and install Nginx PHP MySQL under Ubuntu? In the previous article, we introduced the rapid deployment and installation of Apache PHP MySQL phpMyAdmin under Ubuntu. Next, we will introduce the rapid deployment and installation of Nginx PHP MySQL under Ubuntu. Let’s take a look at the specific steps. Bar.

Update the software library first

sudo apt-get update

Install MySQL

sudo apt-get install mysql-server

Install Nginx

sudo apt-get install nginx

Install php-fpm

sudo apt-get install php5-fpm

Configuration nginx integrates php

sudo cp /etc/nginx/sites-available/default /etc/nginx/sites-available/app
sudo vi /etc/nginx/sites-available/app

Edit the configuration file /etc/nginx/sites-available/app and the content is as follows:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;
    root /path/to/laravel/public;
    index index.php index.html index.htm;
    server_name laravel.app;
    location / {
        try_files $uri $uri/ /index.php$query_string;
    }
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }
    location ~ \.php$ {
        # With php5-fpm:
        try_files $uri =404;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        include fastcgi_params;
    }
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
        deny all;
    }
}

Next create the corresponding soft link in the /etc/nginx/sites-enabled directory :

sudo ln -s /etc/nginx/sites-available/app /etc/nginx/sites-enabled/app

Then check the correctness of the configuration file

sudo service nginx configtest

Reload the configuration file

sudo service nginx reload

Install php common extensions

sudo apt-get install php5-mysql php5-curl php5-gd php5-intl php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-xcache

Restart php-fpm

sudo service php5-fpm restart

Recommended related articles:

Quick deployment and installation of Apache PHP MySQL phpMyAdmin under Ubuntu

Lamp environment configuration for CentOS 6.3 Alibaba LAMP environment configuration under cloud server

Laravel environment setup: How to deploy laravel to Alibaba Cloud or Tencent Cloud Steps

Related course recommendations:

The latest five recommended Laravel video tutorials in 2017

The above is the detailed content of Quick installation steps for Nginx + PHP + MySQL under Ubuntu. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to Build a RESTful API with Advanced Features in Laravel?How to Build a RESTful API with Advanced Features in Laravel?Mar 11, 2025 pm 04:13 PM

This article guides building robust Laravel RESTful APIs. It covers project setup, resource management, database interactions, serialization, authentication, authorization, testing, and crucial security best practices. Addressing scalability chall

How to Implement OAuth2 Authentication and Authorization in Laravel?How to Implement OAuth2 Authentication and Authorization in Laravel?Mar 12, 2025 pm 05:56 PM

This article details implementing OAuth 2.0 authentication and authorization in Laravel. It covers using packages like league/oauth2-server or provider-specific solutions, emphasizing database setup, client registration, authorization server configu

How do I use Laravel's components to create reusable UI elements?How do I use Laravel's components to create reusable UI elements?Mar 17, 2025 pm 02:47 PM

The article discusses creating and customizing reusable UI elements in Laravel using components, offering best practices for organization and suggesting enhancing packages.

How can I create and use custom validation rules in Laravel?How can I create and use custom validation rules in Laravel?Mar 17, 2025 pm 02:38 PM

The article discusses creating and using custom validation rules in Laravel, offering steps to define and implement them. It highlights benefits like reusability and specificity, and provides methods to extend Laravel's validation system.

What Are the Best Practices for Using Laravel in a Cloud-Native Environment?What Are the Best Practices for Using Laravel in a Cloud-Native Environment?Mar 14, 2025 pm 01:44 PM

The article discusses best practices for deploying Laravel in cloud-native environments, focusing on scalability, reliability, and security. Key issues include containerization, microservices, stateless design, and optimization strategies.

Laravel vs. Symfony: Which Is Right for Your Web App?Laravel vs. Symfony: Which Is Right for Your Web App?Mar 10, 2025 pm 01:34 PM

When it comes to choosing a PHP framework, Laravel and Symfony are among the most popular and widely used options. Each framework brings its own philosophy, features, and strengths to the table, making them suited for different projects and use cases. Understanding their differences and similarities is critical to selecting the right framework for your development needs.

How do I create and use custom Blade directives in Laravel?How do I create and use custom Blade directives in Laravel?Mar 17, 2025 pm 02:50 PM

The article discusses creating and using custom Blade directives in Laravel to enhance templating. It covers defining directives, using them in templates, and managing them in large projects, highlighting benefits like improved code reusability and r

How do I use Laravel's Artisan console to automate common tasks?How do I use Laravel's Artisan console to automate common tasks?Mar 17, 2025 pm 02:39 PM

Laravel's Artisan console automates tasks like generating code, running migrations, and scheduling. Key commands include make:controller, migrate, and db:seed. Custom commands can be created for specific needs, enhancing workflow efficiency.Character

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment