aboutsummaryrefslogtreecommitdiff
path: root/config/nginx-emailproxy.conf
blob: 8e40381ef27f74d5f24a9c5379bff2ef6c1220b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
server {
    listen 8080;
    server_name _;

    root /var/www/emailproxy-ui;
    index index.php;

    access_log /home/crt/helper-emailproxy/logs/nginx/nginx-access.log;
    error_log /home/crt/helper-emailproxy/logs/nginx/nginx-error.log;

    location / {
        try_files $uri $uri/ =404;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php8.2-fpm.sock; # maybe ajust this if u got older version yk
    }

    location ~ /\.ht {
        deny all;
    }
}