You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
302 B
16 lines
302 B
2 years ago
|
root {{ mail_dir }}/public_html;
|
||
|
index index.php;
|
||
|
|
||
|
disable_symlinks off;
|
||
|
|
||
|
location ~ /\. {
|
||
|
deny all;
|
||
|
}
|
||
|
|
||
|
location ~ \.php$ {
|
||
|
include /etc/nginx/fastcgi.conf;
|
||
|
|
||
|
fastcgi_pass unix:{{ mail_fpm_socket }};
|
||
|
fastcgi_index index.php;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
}
|