blob: 60ac31882375158dfa8eb04c443b5d770f50c05c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
crt@tc-rafisa-eproxy ~/helper-emailproxy (main)> cat /etc/nginx/conf.d/emailproxy-ui.conf
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;
}
}
|