Webserver Setup
Nginx
Step 1: Create .conf file
CAUTION
If you are using another webclient like Apache please do not follow this guide
First we are going to create the paymenter.conf
file in /etc/nginx/sites-available/
Place the following inside:
IMPORTANT
- Make sure to replace example.com with the domain name you want to use
- If you want to use your webserver with SSL then make sure to follow the SSL Guide
server {
listen 80;
listen [::]:80;
server_name example.com;
root /var/www/paymenter/public;
index index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
}
}
server {
listen 80;
listen [::]:80;
server_name example.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name example.com;
root /var/www/paymenter/public;
index index.php;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
}
}
Step 2: Setting the right permissions
First we need to create a symbolic link for the file that we just created to enable the site
sudo ln -s /etc/nginx/sites-available/paymenter.conf /etc/nginx/sites-enabled/
Then we need to restart the service
sudo systemctl restart nginx
And then as last we need to set the right permissions for paymenter with this command
chown -R www-data:www-data /var/www/paymenter/*
And that is it. Paymenter should now be fully installed. Should you run into any issues you can ask for support on our Discord. Please make sure to follow the forum post guidelines when doing this.
Apache
Stap 1: Create a .conf file
CAUTION
If you’re using another web server like Nginx, please do not follow this guide.
First, create a paymenter.conf file in /etc/apache2/sites-available/.
Place the following configuration inside:
IMPORTANT
Replace example.com with your own domain. If you wish to use SSL, refer to the SSL Guide.
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/paymenter/public
<Directory /var/www/paymenter/public>
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
Redirect permanent / https://example.com/
</VirtualHost>
<VirtualHost *:443>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/paymenter/public
<Directory /var/www/paymenter/public>
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem
</VirtualHost>
Stap 2: Setting the right permissions
First, enable the site by creating a symbolic link to the configuration we just created:
sudo ln -s /etc/apache2/sites-available/paymenter.conf /etc/apache2/sites-enabled/paymenter.conf
sudo a2enmod rewrite
Then, restart Apache to apply the changes:
sudo systemctl restart apache2
Finally, set the correct permissions for Paymenter:
chown -R www-data:www-data /var/www/paymenter/*
And that's it! Paymenter should now be fully installed. If you encounter any issues, feel free to reach out on our Discord.