try
This commit is contained in:
parent
3171184c74
commit
747b249238
1 changed files with 49 additions and 22 deletions
|
@ -43,32 +43,59 @@
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
additionalModules = [ pkgs.nginxModules.fancyindex ];
|
additionalModules = [ pkgs.nginxModules.fancyindex ];
|
||||||
virtualHosts.media = {
|
virtualHosts = {
|
||||||
default = true;
|
# media = {
|
||||||
# addSSL = true;
|
# default = true;
|
||||||
# enableACME = true;
|
# # addSSL = true;
|
||||||
|
# # enableACME = true;
|
||||||
root = "/media";
|
# root = "/media";
|
||||||
|
# serverName = "_";
|
||||||
serverName = "_";
|
# locations = {
|
||||||
|
# "/" = {
|
||||||
locations = {
|
# tryFiles = "$uri $uri/ =404";
|
||||||
"/" = {
|
# extraConfig = ''
|
||||||
tryFiles = "$uri $uri/ =404";
|
# fancyindex on;
|
||||||
extraConfig = ''
|
# fancyindex_name_length 256;
|
||||||
fancyindex on;
|
# fancyindex_exact_size off;
|
||||||
fancyindex_name_length 256;
|
# '';
|
||||||
fancyindex_exact_size off;
|
# };
|
||||||
'';
|
# };
|
||||||
};
|
# };
|
||||||
|
stronnica = {
|
||||||
|
default = true;
|
||||||
|
# addSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
root = "/srv/http/stronnica";
|
||||||
|
locations."~ \\.php$".extraConfig = ''
|
||||||
|
fastcgi_pass unix:${config.services.phpfpm.pools.mypool.socket};
|
||||||
|
fastcgi_index index.php;
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# security.acme = {
|
services.mysql = {
|
||||||
# acceptTerms = true;
|
enable = true;
|
||||||
# defaults.email = "krizej@protonmail.com";
|
package = pkgs.mariadb;
|
||||||
# };
|
};
|
||||||
|
|
||||||
|
services.phpfpm.pools.mypool = {
|
||||||
|
user = "nobody";
|
||||||
|
settings = {
|
||||||
|
"pm" = "dynamic";
|
||||||
|
"listen.owner" = config.services.nginx.user;
|
||||||
|
"pm.max_children" = 5;
|
||||||
|
"pm.start_servers" = 2;
|
||||||
|
"pm.min_spare_servers" = 1;
|
||||||
|
"pm.max_spare_servers" = 3;
|
||||||
|
"pm.max_requests" = 500;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
security.acme = {
|
||||||
|
acceptTerms = true;
|
||||||
|
defaults.email = "krizej@protonmail.com";
|
||||||
|
};
|
||||||
|
|
||||||
chuj = {
|
chuj = {
|
||||||
system = {
|
system = {
|
||||||
|
|
Loading…
Reference in a new issue