1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install and Configure nginx with PHP on Linux</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Debian,Developer,Development,Free Software,Homelab,Linux,Nginx,PHP,PHP Developer,PHP Development,PHP Nginx Install Guide,PHP Nginx Installation Guide,Web Server,Web Server Administration,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install and Configure nginx with PHP on Linux">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="08/08/2022 05:05:56 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Install and Configure nginx with PHP on Linux</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Log into the Linux device</li>
- <li>Run the following commands in a terminal window
- <div class="codeBlock"># update software repositories<br />
- sudo apt update<br />
- # install available software updates<br />
- sudo apt upgrade -y<br />
- # install nginx and php<br />
- sudo apt install nginx php7.3-fpm php7.3-common php7.3-mysql php7.3-gmp php7.3-curl php7.3-intl php7.3-mbstring php7.3-xmlrpc php7.3-gd php7.3-xml php7.3-cli php7.3-zip php7.3-soap php7.3-imap<br />
- # set the owner of the web root<br />
- sudo chown -R www-data /usr/share/nginx/html<br />
- # edit the nginx config to add PHP support<br />
- sudo nano /etc/nginx/conf.d/default.conf</div>
- </li>
- <li>Paste the following configuration into default.conf
- <p>server {<br />
- listen 80;<br />
- listen [::]:80;</p>
- <p> root /usr/share/nginx/html;<br />
- index index.php index.html index.htm;</p>
- <p> server_name localhost;</p>
- <p> location / {<br />
- try_files $uri $uri/ =404;<br />
- }</p>
- <p> location ~ \.php$ {<br />
- include snippets/fastcgi-php.conf;<br />
- fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;<br />
- }<br />
- }</p>
- </li>
- <li>Press CTRL+O, Enter, CTRL+X to write the changes to default.conf</li>
- <li>Continue with the following commands
- <div class="codeBlock"># restart nginx service<br />
- sudo systemctl restart nginx<br />
- # create a test phpinfo file<br />
- sudo nano /usr/share/nginx/html/phpinfo.php</div>
- </li>
- <li>Paste the following into the .php page
- <p><?php<br />
- phpinfo();<br />
- ?></p>
- </li>
- <li>Press CTRL+O, Enter, CTRL+X to write the changes to phpinfo.php</li>
- <li>Open a web browser and navigate to http://DNSorIP/phpinfo.php</li>
- </ol> </div>
- </div>
- </body>
- </html>
-
|