Posts

Showing posts from March 16, 2019

HTACCESS 2 rewrite cond crash?

Image
0 I have a .htaccess file with this : <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP} !=on RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule> <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/.well-known/cpanel-dcv/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/.well-known/pki-validation/[A-F0-9]{32}.txt(?: Comodo DCV)?$ RewriteRule !.(js|ico|gif|jpg|png|bmp|swf|css|html)$ index.php [QSA,L] </IfModule> And then if I send a request with a POST parameter, all the POST parameter is disapear. Example I access https://www.example.com with id in the POST parameter. Whe

Francesco Barberini (1662–1738)

Image
  Nota: Para o Cardeal-sobrinho do Papa Urbano VIII, criado em 1623, veja Francesco Barberini (1597-1679). Francesco Barberini, iuniore Cardeal da Santa Igreja Romana Deão do Sagrado Colégio dos Cardeais Atividade Eclesiástica Diocese Diocese de Roma Nomeação 1 de julho de 1726 Predecessor Dom Fabrizio Cardeal Paolucci Sucessor Dom Pietro Cardeal Ottoboni Mandato 1726 - 1738 Ordenação e nomeação Ordenação presbiteral 15 de setembro de 1715 Nomeação episcopal 3 de março de 1721 Ordenação episcopal 16 de março de 1721 por Dom Fabrizio Cardeal Paolucci Cardinalato Criação 27 de novembro de 1690 por Papa Alexandre VIII Ordem Cardeal-diácono (1690-1715) Cardeal-presbítero (1715-1721) Cardeal-bispo (1721-1738) Título Santo Ângelo em Pescheria (1690-1715) São Bernardo nas Termas Dioclecianas (1715-1718) Santa Praxedes (1718-1721) Palestrina (1721-1726) Ostia-Velletri (1726-1738

Ansible nested loops

Image
0 I have a variable that looks like this: device: - sdb: 2 - sdc: 3 - sdd: 4 How can I produce the result with ansible loops: sdb 1 sdb 2 sdc 1 sdc 2 sdc 3 sdd 1 sdd 2 sdd 3 sdd 4 I tried with_sequence and loop_control but it didn't work. loops ansible share | improve this question asked Nov 21 at 2:35 Cheng Shuai 1 2 add a comment  |