2024-06-26 18:27:01 -04:00
# Ubuntu 24.04 LEMP Drupal
First you need to run the following scripts:
- https://github.com/TommyTran732/Linux-Setup-Scripts/blob/main/Ubuntu-24.04-Server.sh
2024-07-27 21:18:49 -04:00
- https://github.com/TommyTran732/Linux-Setup-Scripts/blob/main/sample-scripts/Ubuntu-24.04-LEMP.sh
2024-06-26 18:27:01 -04:00
## Install composer
```
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo chown root:root composer.phar
sudo mv composer.phar /usr/local/bin
```
2024-07-27 21:18:49 -04:00
## Install other necessary packages
```
sudo apt install -y unzip
```
2024-06-26 18:27:01 -04:00
## Setup Directory Structure
```
# Add unprivileged user for drupal
sudo useradd -U -m -s /bin/bash drupal
# Make drupal directory
sudo mkdir -p /srv/drupal
sudo chown drupal:drupal /srv/drupal
# Setup ACL
sudo apt install -y acl
2024-06-26 19:11:09 -04:00
sudo setfacl -dm u:nginx:rwx /srv/drupal
sudo setfacl -m u:nginx:rwx /srv/drupal
2024-06-26 18:27:01 -04:00
```
## Install Drupal
Switch to the `drupal` user:
```
sudo su - drupal
```
As the drupal user, run:
```
cd /srv/drupal
composer create-project drupal/recommended-project drupal.yourdomain.tld
2024-06-26 20:27:19 -04:00
cp /srv/drupal/drupal.yourdomain.tld/web/sites/default/default.settings.php /srv/drupal/drupal.yourdomain.tld/web/sites/default/settings.php
2024-06-26 18:27:01 -04:00
```
2024-06-26 20:18:35 -04:00
Exit the drupal user:
```
exit
```
2024-06-26 18:27:01 -04:00
## Generate an SSL certificate
```
certbot certonly --nginx --no-eff-email \
2024-07-27 21:18:49 -04:00
--key-type ecdsa \
2024-06-26 18:27:01 -04:00
--cert-name drupal.yourdomain.tld \
-d drupal.yourdomain.tld
```
## NGINX configuration file
2024-07-27 21:18:49 -04:00
As root, download [this file ](https://raw.githubusercontent.com/TommyTran732/NGINX-Configs/main/sample-configurations/snippets/security-drupal-no-proxy.conf ) and put it in `/etc/nginx/snippets/security-drupal-no-proxy.conf`
2024-06-27 00:01:57 -04:00
2024-06-26 20:18:35 -04:00
As root, put the following file in `/etc/nginx/conf.d/sites_drupal.conf` :
2024-06-26 18:27:01 -04:00
```
server {
listen 443 quic reuseport;
listen 443 ssl;
listen [::]:443 quic reuseport;
listen [::]:443 ssl;
server_name drupal.yourdomain.tld;
ssl_certificate /etc/letsencrypt/live/drupal.yourdomain.tld/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/drupal.yourdomain.tld/privkey.pem;
ssl_trusted_certificate /etc/letsencrypt/live/drupal.yourdomain.tld/chain.pem;
include snippets/hsts.conf;
2024-06-27 00:01:57 -04:00
include snippets/security-drupal-no-proxy.conf;
2024-06-26 18:27:01 -04:00
include snippets/cross-origin-security.conf;
include snippets/quic.conf;
2024-07-28 17:10:09 -04:00
add_header Content-Security-Policy "default-src 'none'; connect-src 'self'; font-src 'self'; img-src 'self' data:; script-src 'self'; style-src 'self' 'unsafe-inline'; base-uri 'none'; block-all-mixed-content; form-action 'self'; frame-ancestors 'self'; upgrade-insecure-requests";
2024-06-26 20:18:35 -04:00
2024-06-26 18:27:01 -04:00
index index.php;
root /srv/drupal/drupal.yourdomain.tld/web;
location / {
2024-06-26 20:18:35 -04:00
try_files $uri $uri/ /index.php?$args;
2024-06-26 18:27:01 -04:00
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
2024-06-26 20:18:35 -04:00
```
2024-07-03 16:37:23 -04:00
**Notes**: `listen 443 quic reuseport;` is only needed once. If you plan to have multiple vhosts on this setup with SSL, consider making a dedicated vhost for this config so that it is nicer and easier to manage. An example can be found [here ](https://github.com/TommyTran732/NGINX-Configs/blob/main/etc/nginx/conf.d/sites_default_quic.conf ).
2024-06-26 20:18:35 -04:00
## Setup the Database for Drupal
As root, log into MariaDB:
```
mariadb -uroot
```
Run the following queries:
```
CREATE DATABASE drupal CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'drupal'@'127.0.0.1' IDENTIFIED BY 'yourPassword';
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES ON drupal.* TO 'drupal'@'127.0.0.1';
exit
```
2024-07-03 16:37:23 -04:00
## Configure Drupal
2024-06-26 20:18:35 -04:00
2024-06-26 20:27:19 -04:00
Go to drupal.yourdomain.tld and follow the prompts.
Switch to the `drupal` user:
2024-06-26 20:18:35 -04:00
```
2024-06-26 20:27:19 -04:00
sudo su - drupal
2024-06-26 20:18:35 -04:00
```
2024-06-26 20:27:19 -04:00
As the drupal user, run:
2024-06-26 20:18:35 -04:00
```
2024-06-26 20:27:19 -04:00
chmod 400 /srv/drupal/drupal.yourdomain.tld/web/sites/default/settings.php
setfacl -m u:nginx:r /srv/drupal/drupal.yourdomain.tld/web/sites/default/settings.php
2024-06-27 00:01:57 -04:00
```