Autenticação Active Directory/LDAP BWeb Apache Bacula Enterprise
17 de Fevereiro de 2019, 13:18 - sem comentários aindaMuitas empresas utilizam um servidor Active Directory/LDAP para manter o acesso e as senhas dos usuários centralizados.
Isso facilita a administração dos gerentes de TI e também a vida do usuário, que possue apenas uma única senha, que é utilizada para todos os tipos de autenticação dos sistemas em uma empresa.
Configurações no servidor Active Directory/LDAP
Verifique se existe algum grupo específico ao qual irá permitir acesso ao Bweb com autenticação LDAP, ou então crie um novo, por exemplo "G_TI" e também crie um usuário, por exemplo "bweb" e adicione a este grupo.
Para pegar o filtro LDAP correto, utilize o comando abaixo no powershell no servidor Active Directory/LDAP utilizando o grupo G_TI. O valor de "DistinguishedName" que será utilizado no filtro.
Get-ADGroup -Identity G_TI DistinguishedName : CN=G_TI,OU=Grupos,DC=dominio,DC=local GroupCategory : Security GroupScope : Global Name : G_TI ObjectClass : group ObjectGUID : edfb6f27-9b35-486e-8d75-aee5b67b8d1d SamAccountName : G_TI SID : S-1-5-21-2301264539-1335648919-2092242634-1163
Configurando o Apache
*Para configurar o Bweb com Apache utilize o seguinte tutorial:
http://www.bacula.com.br/configuracao-do-bweb-com-apache-no-centos-7-bacula-enterprise/
Instalar o módulo ldap para Apache
yum install -y mod_ldap
Edite o arquivo /etc/httpd/conf.d/bweb.conf, e configure conforme o modelo abaixo, lembrando de substituir as informações de acordo com o seu domínio:
<Directory "/opt/bweb/cgi"> Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch AllowOverride None Options None Order allow,deny Allow from all AllowOverride None # HTTP authentication #Authentication HttpBasic #AuthType Basic #AuthName MyPrivateFile #AuthUserFile /opt/bweb/etc/htpasswd.bweb #Require valid-user # LDAP/Active Directory authentication AuthType Basic AuthBasicProvider ldap AuthName "Password protected area" AuthLDAPURL "ldap://IP:PORTA/DC=domain,DC=local?sAMAccountName" AuthLDAPBindDN "bweb@domain.local" AuthLDAPBindPassword "Bacula@2019" Require ldap-group CN=G_TI,ou=Grupos,DC=domain,DC=local </Directory>
Salve, saia
Configuração BWeb
No menu de configuração do BWeb habilite a opção Security, para passar a exigir autenticação do Apache.
Reinicie o serviço do Apache:
systemctl restart httpd
Configuração do BWeb com Apache no Centos 7 Bacula Enterprise
16 de Fevereiro de 2019, 18:22 - sem comentários aindaInstalando e configurando o Bweb com Apache
Caso esteja rodando o Bweb com o lighttpd, pare a execução do Bweb e certifique-se que não exista nenhuma instância do Lighttp sendo executada.
Instalar o Apache
yum install httpd
Efetuar uma cópia dos arquivos de configuração do Apache
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.default cp /etc/httpd/conf.d/bweb.conf /etc/httpd/conf.d/bweb.conf.default
Alterar as permissões para o Bweb funcionar corretamente com o Apache
chmod 775 /opt/bweb/etc/bweb.conf chown bacula.root /opt/bweb/etc/bweb.conf chown bacula -R /opt/bweb/spool/ chown bacula -R /opt/bacula/etc/conf.d/ chown bacula -R /opt/bacula/working/conf.d/
Substituir o conteúdo do arquivo /etc/httpd/conf/httpd.conf pelo conteúdo abaixo:
# This is the main Apache HTTP server configuration file. It contains the # configuration directives that give the server its instructions. # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. # In particular, see # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> # for a discussion of each configuration directive. # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # Configuration and logfile names: If the filenames you specify for many # of the server's control files begin with "/" (or "drive:/" for Win32), the # server will use that explicit path. If the filenames do *not* begin # with "/", the value of ServerRoot is prepended -- so 'log/access_log' # with ServerRoot set to '/www' will be interpreted by the # server as '/www/log/access_log', where as '/log/access_log' will be # interpreted as '/log/access_log'. # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. # # Do not add a slash at the end of the directory path. If you point # ServerRoot at a non-local disk, be sure to specify a local disk on the # Mutex directive, if file-based mutexes are used. If you wish to share the # same ServerRoot for multiple httpd daemons, you will need to change at # least PidFile. # ServerRoot "/etc/httpd" PidFile "/opt/bacula/working/bweb.pid" # # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, instead of the default. See also the <VirtualHost> # directive. # # Change this to Listen on specific IP addresses as shown below to # prevent Apache from glomming onto all bound IP addresses. # #Listen 12.34.56.78:80 Listen 9180 # # Dynamic Shared Object (DSO) Support # # To be able to use the functionality of a module which was built as a DSO you # have to place corresponding `LoadModule' lines at this location so the # directives contained in it are actually available _before_ they are used. # Statically compiled modules (those listed by `httpd -l') do not need # to be loaded here. # # Example: # LoadModule foo_module modules/mod_foo.so # Include conf.modules.d/*.conf # # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. # # User/Group: The name (or #number) of the user/group to run httpd as. # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. # User bacula Group bacula # 'Main' server configuration # # The directives in this section set up the values used by the 'main' # server, which responds to any requests that aren't handled by a # <VirtualHost> definition. These values also provide defaults for # any <VirtualHost> containers you may define later in the file. # # All of these directives may appear inside <VirtualHost> containers, # in which case these default settings will be overridden for the # virtual host being defined. # # # ServerAdmin: Your address, where problems with the server should be # e-mailed. This address appears on some server-generated pages, such # as error documents. e.g. admin@your-domain.com # ServerAdmin root@localhost # # ServerName gives the name and port that the server uses to identify itself. # This can often be determined automatically, but we recommend you specify # it explicitly to prevent problems during startup. # # If your host doesn't have a registered DNS name, enter its IP address here. # #ServerName www.example.com:80 # # Deny access to the entirety of your server's filesystem. You must # explicitly permit access to web content directories in other # <Directory> blocks below. # <Directory /> AllowOverride none Require all denied </Directory> # # Note that from this point forward you must specifically allow # particular features to be enabled - so if something's not working as # you might expect, make sure that you have specifically enabled it # below. # # # DocumentRoot: The directory out of which you will serve your # documents. By default, all requests are taken from this directory, but # symbolic links and aliases may be used to point to other locations. # #DocumentRoot "/var/www/html" DocumentRoot "/opt/bweb/html" # # Relax access to content within /var/www. # <Directory "/opt/bweb"> AllowOverride None # Allow open access: Require all granted </Directory> # Further relax access to the default document root: <Directory "/opt/bweb/html"> # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews # # Note that "MultiViews" must be named *explicitly* --- "Options All" # doesn't give it to you. # # The Options directive is both complicated and important. Please see # http://httpd.apache.org/docs/2.4/mod/core.html#options # for more information. # Options Indexes FollowSymLinks # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: # Options FileInfo AuthConfig Limit # AllowOverride None # # Controls who can get stuff from this server. # Require all granted </Directory> # # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # <IfModule dir_module> DirectoryIndex index.html </IfModule> # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # <Files ".ht*"> Require all denied </Files> # # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a <VirtualHost> # container, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a <VirtualHost> # container, that host's errors will be logged there and not here. # ErrorLog /opt/bacula/working/bweb-error.log CustomLog /opt/bacula/working/bweb-access.log combined # # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. # #LogLevel warn LogLevel debug <IfModule log_config_module> # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined LogFormat "%h %l %u %t "%r" %>s %b" common <IfModule logio_module> # You need to enable mod_logio.c to use %I and %O LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i" %I %O" combinedio </IfModule> # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a <VirtualHost> # container, they will be logged here. Contrariwise, if you *do* # define per-<VirtualHost> access logfiles, transactions will be # logged therein and *not* in this file. # #CustomLog "logs/access_log" common # # If you prefer a logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. # CustomLog "logs/access_log" combined </IfModule> <IfModule alias_module> # # Redirect: Allows you to tell clients about documents that used to # exist in your server's namespace, but do not anymore. The client # will make a new request for the document at its new location. # Example: # Redirect permanent /foo http://www.example.com/bar # # Alias: Maps web paths into filesystem paths and is used to # access content that does not live under the DocumentRoot. # Example: # Alias /webpath /full/filesystem/path # # If you include a trailing / on /webpath then the server will # require it to be present in the URL. You will also likely # need to provide a <Directory> section to allow access to # the filesystem path. # # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the target directory are treated as applications and # run by the server when requested rather than as documents sent to the # client. The same rules about trailing "/" apply to ScriptAlias # directives as to Alias. # ScriptAlias /cgi-bin/ "/var/www/cgi-bin/" </IfModule> # # "/var/www/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. # <Directory "/opt/bweb/cgi"> AllowOverride None Options None Require all granted </Directory> <IfModule mime_module> # # TypesConfig points to the file containing the list of mappings from # filename extension to MIME-type. # TypesConfig /etc/mime.types # # AddType allows you to add to or override the MIME configuration # file specified in TypesConfig for specific file types. # #AddType application/x-gzip .tgz # # AddEncoding allows you to have certain browsers uncompress # information on the fly. Note: Not all browsers support this. # #AddEncoding x-compress .Z #AddEncoding x-gzip .gz .tgz # # If the AddEncoding directives above are commented-out, then you # probably should define those extensions to indicate media types: # AddType application/x-compress .Z AddType application/x-gzip .gz .tgz # # AddHandler allows you to map certain file extensions to "handlers": # actions unrelated to filetype. These can be either built into the server # or added with the Action directive (see below) # # To use CGI scripts outside of ScriptAliased directories: # (You will also need to add "ExecCGI" to the "Options" directive.) # AddHandler cgi-script .pl #AddHandler cgi-script .cgi # For type maps (negotiated resources): #AddHandler type-map var # # Filters allow you to process content before it is sent to the client. # # To parse .shtml files for server-side includes (SSI): # (You will also need to add "Includes" to the "Options" directive.) # AddType text/html .shtml AddOutputFilter INCLUDES .shtml </IfModule> # # Specify a default charset for all content served; this enables # interpretation of all content as UTF-8 by default. To use the # default browser choice (ISO-8859-1), or to allow the META tags # in HTML content to override this choice, comment out this # directive: # AddDefaultCharset UTF-8 <IfModule mime_magic_module> # # The mod_mime_magic module allows the server to use various hints from the # contents of the file itself to determine its type. The MIMEMagicFile # directive tells the module where the hint definitions are located. # MIMEMagicFile conf/magic </IfModule> # # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # # Some examples: #ErrorDocument 500 "The server made a boo boo." #ErrorDocument 404 /missing.html #ErrorDocument 404 "/cgi-bin/missing_handler.pl" #ErrorDocument 402 http://www.example.com/subscription_info.html # # # EnableMMAP and EnableSendfile: On systems that support it, # memory-mapping or the sendfile syscall may be used to deliver # files. This usually improves server performance, but must # be turned off when serving from networked-mounted # filesystems or if support for these functions is otherwise # broken on your system. # Defaults if commented: EnableMMAP On, EnableSendfile Off # #EnableMMAP off EnableSendfile on # Supplemental configuration # # Load config files in the "/etc/httpd/conf.d" directory, if any. IncludeOptional conf.d/*.conf
Substituir o conteúdo do arquivo /etc/httpd/conf.d/bweb.conf pelo conteúdo abaixo:
<VirtualHost *:9180> ServerAdmin webmaster@yourdomain.com DocumentRoot /opt/bweb/html ServerName bweb.yourdomain.com LogLevel error ErrorLog logs/bweb_error_log CustomLog logs/bweb_access_log common ScriptAlias /cgi-bin/bweb "/opt/bweb/cgi/" <Directory "/opt/bweb/cgi"> Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch AllowOverride None Options None Order allow,deny Allow from all AllowOverride None # HTTP authentication #Authentication HttpBasic #AuthType Basic #AuthName MyPrivateFile #AuthUserFile /opt/bweb/etc/htpasswd.bweb #Require valid-user </Directory> Alias /bweb/fv/ /opt/bweb/spool/ <Directory "/opt/bweb/spool/"> Options None AllowOverride AuthConfig Order allow,deny Allow from all </Directory> Alias /bweb /opt/bweb/html <Directory "/opt/bweb/html"> AllowOverride All </Directory> </VirtualHost>
Desabilitar o início automático do Bweb/Lighttpd
systemctl disable bweb
Habilitar o início automático do Bweb/Apache
systemctl enable httpd systemctl start httpd
Jobs de Cópia e Migração
15 de Fevereiro de 2019, 19:36 - sem comentários aindaOs Jobs de cópia e migração (copy e migration) do Bacula são ótimos para mover dados de backup de hardware de armazenamento antigo para novos, executar backups disk-to-disk-to-tapes (disco para disco para fitas) ou implementar um segundo armazenamento off-site.
A cópia e migração acontecem no nível de granularidade de Job, desta forma o tamanho da fita ou mídia de origem ou destino não é importante. Os Jobs a serem copiados de um Pool (e Storage) Bacula de origem devem ser selecionadas a partir de alguns critérios definidos e são armazenadas em uma Pool (e Storage) de destino.
A diferença entre os jobs de cópia e migração é que o Bacula descarta os Jobs gravados da Pool de origem no caso da migração.
Quando o backup original de um Job copiado é reciclado ou excluído por algum motivo, o Bacula selecionará automaticamente a cópia para fazer uma restauração de um cliente naquele determinado momento, se solicitado.
Os trabalhos de cópia e migração não requerem conexão com os Clientes do Bacula. Isso geralmente significa que ele pode ser executado durante o dia, sem risco de impacto nos demais serviços.
O escopo de seleção dos Jobs para a cópia, pode ser:
- um ou vários Jobs de backup configurados;
- um ou vários Volumes, pelo nome.
- Jobs de um cliente, pelo nome.
- Jobs realizados que correspondam a uma expressão regular;
- se um trabalho existe em um determinado volume;
- volumes com o somatório de ocupação em uma Pool inferior ou superior a um dado valor;
- tamanho do volume.
Em um resumo, para executar um Job de cópia ou migração, você deve definir um recurso Job especial em bacula-dir.conf com a diretiva Type igual a Copy ou Migrate; a especificação de uma Pool origem; e, pelo menos, mas não menos importante, um dos SelectionType (e muitas vezes SelectionPattern) que define os critérios de seleção capazes de encontrar Jobs para serem copiados.
Nos recursos Pool (ainda em bacula-dir.conf), você deve especificar na Pool de origem a diretiva Storage (o mesmo nos quais seus volumes já estão sendo gravados, que também será a origem da cópia), além da diretiva NextPool, que deve informar o nome de outra Pool de destino da cópia. Por fim, no recurso da Pool de Destino, também deve ser especificado uma diretiva Storage para um dispositivo de armazenamento diferente, que será o de destino.
Agora vamos ver mais informações sobre cada uma dessas diretrizes necessárias. Mais adiante há também um exemplo completo de configuração:
a) Para o recurso Job
Pool =
Determina onde o algoritmo de seleção de trabalhos para cópia será aplicado. É a Pool de origem.
Type = Migrate
Os Jobs selecionados são movidos da Pool de origem para a de destino (os trabalhos originais são descartados). Ou...
Type = Copy
Os Jobs são copiados para o Pool de destino. Eles receberão os tempos de retenção e reciclarão o comportamento da nova Pool, de igual sorte.
Selection Type =
Determina como os JobIds para cópia ou migração serão selecionados. Esses são os valores possíveis:
-
SmallestVolume – seleciona todos os Jobs do menor volume de pool de origem.
-
OldestVolume – seleciona todos os Jobs do volume mais antigo.
-
Client – se utilizado, requer também uma outra diretiva (SelectionPattern) que deve ser uma Expressão Regular que corresponda aos nomes dos clientes para cópia / migração apenas dos Jobs dos mesmos.
- Volume – Se utilizada, essa diretiva também requer a SelectionPattern, neste caso uma Expressão Regular que corresponderá aos nomes de volume cujos Jobs serão copiados.
-
Job – Neste caso a SelectionPattern deve corresponder a nomes de Jobs.
-
SQLQuery – Uma query SQL para encontrar JobIds diretamente do banco de dados Bacula a serem copiados.
- PoolOccupancy – o Bacula somará o tamanho de todos os volumes da Pool de origem. Se for menor do que as diretivas acessórias (necessárias no próprio recurso da Pool) MigrationLowBytes ou superior a MigrationHighBytes, ele migrará os trabalhos até que a ocupação da Pool volte aos limites definidos.
-
PoolUncopiedJobs – Este é bastante popular para backups off-site. Ele copiará todos os trabalhos que não tiverem uma cópia no Pool de destino.
Selection Pattern =
Esta diretiva não é necessária para SelectionType, OldestVolume nem SmallestVolume, mas indispensável para Client, Volume e Job. O valor de SelectionPattern deve ser um RegExp que encontrará os respectivos nomes de diretiva.
b) Para o recurso Pool de Origem
Migration Time =
Um período de tempo que, quando acabou, os Jobs de backup podem ser migrados se um Job de Migração for executado.
Migration High Bytes =
Tamanho máximo da ocupação da Pool.
Migration Low Bytes =
Tamanho mínimo da ocupação da Pool.
Next Pool =
Especifica o que é o pool de destino da cópia (obrigatório). No entanto, também é possível substituir esta especificação de NextPool no recurso Schedule, permitindo que você execute Jobs de cópia ou migração para Pools de destino diferentes de acordo com o tempo.
Storage =
Neste caso, o nome do Storage de origem1 deve ser especificado. O mesmo que provavelmente já vem sendo utilizado para gravar os backups desta Pool. De qualquer sorte, este é o melhor lugar para associar as Pool aos seus Storages, independente de estar configurando um job de cópia.
c) Para o recurso Pool de Destino
Storage =
O nome do Storage de destino deve ser especificado, onde os Jobs de cópia ou migração serão armazenados.
a) Recursos Pool (bacula-dir.conf)
# Pool de Origem Pool { Name = Monthly-Disk Pool Type = backup Storage = File1 # storage de origem Next Pool = Copy # nome pool de destino ... } # Pool de Destino Pool { Name = Copy Pool Type = backup Storage = File2 # storage de destino ... }
b) Job Resource (bacula-dir.conf)
Job { Name = "CopyJobs" JobDefs = DefaultJob Type = Copy # ou Migrate Pool = Monthly-Disk # pool de origem Selection Type = PoolUncopiedJobs Schedule = CopySchedule # recomendado }
Aplique as alterações na configuração e execute (comando run) o Job criado como teste. Neste exemplo, a primeira cópia pode levar muito tempo, uma vez que irá selecionar todos os Jobs nunca copiados da Pool de origem (SelectionPattern = PoolUncopiedJobs). Portanto, planeje o seu início cuidadosamente pois essa primeira carga de trabalho pode ser grande. Você também deve querer criar e especificar para este Job um Schedule diferente de seu backup regular, como no exemplo.
1Esse Storage já deve existir no bacula-dir.conf na forma de um recurso.
Autenticação Active Directory BWeb Lighttp Bacula Enterprise
13 de Fevereiro de 2019, 21:09 - sem comentários aindaMuitas empresas utilizam um servidor Active Directory/LDAP para manter o acesso e as senhas dos usuários centralizados.
Isso facilita a administração dos gerentes de TI e também a vida do usuário, que possue apenas uma única senha, que é utilizada para todos os tipos de autenticação dos sistemas em uma empresa.
Configurações no servidor Active Directory/LDAP
Verifique se existe algum grupo específico ao qual irá permitir acesso ao Bweb com autenticação LDAP, ou então crie um novo, por exemplo "G_TI" e também crie um usuário, por exemplo "bweb" e adicione a este grupo.
Para pegar o filtro LDAP correto, utilize o comando abaixo no powershell no servidor Active Directory/LDAP utilizando o grupo G_TI. O valor de "DistinguishedName" que será utilizado no filtro.
Get-ADGroup -Identity G_TI DistinguishedName : CN=G_TI,OU=Grupos,DC=dominio,DC=local GroupCategory : Security GroupScope : Global Name : G_TI ObjectClass : group ObjectGUID : edfb6f27-9b35-486e-8d75-aee5b67b8d1d SamAccountName : G_TI SID : S-1-5-21-2301264539-1335648919-2092242634-1163
Configurando o Lighttp
Edite o arquivo /opt/bweb/etc/httpd.conf, e insira as seguintes linhas, lembrando de susbtituir as informações de acordo com o seu domínio:
# Auth LDAP auth.backend = "ldap" auth.backend.ldap.hostname = "IP_SERVIDOR:PORTA" auth.backend.ldap.base-dn = "DC=dominio,DC=local" # Nesta linha que se inclui após o "memberOf=" o resultado do "DistinguishedName" obtido no servidor Active Directory/LDAP. auth.backend.ldap.filter = "(&(objectClass=user)(sAMAccountName=$)(memberOf=CN=G_TI,OU=Grupos,DC=dominio,DC=local))" # Caso a autenticação não funcionar pode ser algum erro no filtro. Então comente a linha anterior e descomente a linha abaixo. #auth.backend.ldap.filter = "(&(objectClass=user)(sAMAccountName=$))" # Preecnher com o usuário e senha do usuário criado no servidor Active Directory/LDAP auth.backend.ldap.bind-dn = "bweb" auth.backend.ldap.bind-pw = "xRBIZwFGYmSVh4I29VzNXWNDrjJMpZ" auth.require = ( "/" => ( "method" => "basic", "realm" => "Password protected area", "require" => "valid-user" ) )
No mesmo arquivo, acrescente o módulo "mod_authn_ldap" nos componentes a serem carregados:
server.modules = ("mod_cgi", "mod_alias", "mod_setenv", "mod_accesslog", "mod_auth", "mod_authn_ldap" )
Salve e saia.
Configuração BWeb
No menu de configuração do BWeb habilite a opção Security, para passar a exigir autenticação do Lighttp.
Reinicie o serviço do BWeb:
service bweb restart
Em caso de problemas, inicie o BWeb pelo script:
/opt/bweb/etc/starthttp
Referências
[1] https://redmine.lighttpd.net/projects/lighttpd/wiki/docs_modauth
Configuração HTTPS (SSL) BWeb Lighttp Bacula Enterprise
12 de Fevereiro de 2019, 17:49 - sem comentários aindaCaso deseje prover um acesso ainda mais seguro ao BWeb, é possível utilizar o protocolo HTTPS.
Preparação do Certificado da Máquina
No shell do servidor Bacula que tenha o BWeb instalado, copie um certificado assinado por terceiros [1] ou gere um certificado auto-assinado.
openssl req -new -x509 -keyout /opt/bweb/etc/lighttp.pem -out /opt/bweb/etc/lighttp.pem -days 365 -nodes
Importante! Durante as perguntas, utilize o IP de rede local de seu servidor ou o nome completo qualificado (FQDN):
----- Country Name (2 letter code) [XX]: State or Province Name (full name) []: Locality Name (eg, city) [Default City]: Organization Name (eg, company) [Default Company Ltd]: Organizational Unit Name (eg, section) []: Common Name (eg, your name or your server's hostname) []:189.6.77.101
Forneça as permissões necessárias para leitura do Certificado:
chmod 400 /opt/bweb/etc/lighttp.pem
Configurando o Lighttp
Edite o arquivo /opt/bweb/etc/httpd.conf, e insira as seguintes linhas:
var.confdir = "/opt/bweb/etc" $SERVER["socket"] == ":443" { ssl.engine = "enable" ssl.pemfile = var.confdir + "/lighttp.pem" }
No mesmo arquivo, acrescente o módulo mod_openssl nos componentes a serem carregados:
server.modules = ("mod_cgi", "mod_alias", "mod_setenv", "mod_accesslog", "mod_auth", "mod_openssl" )
Salve e saia.
No shell, adicione a regra de firewall para a porta SSL:
firewall-cmd --permanent --zone=public --add-port=443/tcp service firewalld restart
Reinicie o serviço do BWeb:
service bweb restart
Em caso de problemas, incie o BWeb pelo script:
/opt/bweb/etc/starthttp
Referências
[1] https://www.digicert.com/ssl-certificate-installation-lighttpd.htm
[2] https://redmine.lighttpd.net/projects/lighttpd/wiki/HowToSimpleSSL