gitextract_qiht013d/ ├── .dockerignore ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .provision/ │ ├── README.md │ ├── ansible-role-lstu/ │ │ ├── README.md │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ ├── apprun.yaml │ │ │ ├── dependencies.yaml │ │ │ ├── gitclone.yaml │ │ │ └── main.yml │ │ ├── templates/ │ │ │ ├── app.conf │ │ │ └── lstu.conf.j2 │ │ └── vars/ │ │ └── main.yml │ └── terraform-aws-lstu/ │ ├── README.md │ ├── lstu_startup.sh │ ├── main.tf │ ├── output.tf │ ├── provider.tf │ └── vars.tf ├── .weblate ├── AUTHORS.md ├── CHANGELOG ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cpanfile ├── cpanfile.snapshot ├── docker/ │ └── entrypoint.sh ├── docker-compose.dev.yml ├── docker-compose.yml ├── docker-stack.yml ├── hooks/ │ └── build ├── lib/ │ ├── Lstu/ │ │ ├── Command/ │ │ │ ├── ban.pm │ │ │ ├── safebrowsingcheck.pm │ │ │ ├── theme.pm │ │ │ └── url.pm │ │ ├── Controller/ │ │ │ ├── Admin.pm │ │ │ ├── Authent.pm │ │ │ ├── Stats.pm │ │ │ └── URL.pm │ │ ├── DB/ │ │ │ ├── Ban/ │ │ │ │ ├── MySQL.pm │ │ │ │ ├── Pg.pm │ │ │ │ └── SQLite.pm │ │ │ ├── Ban.pm │ │ │ ├── Session/ │ │ │ │ ├── MySQL.pm │ │ │ │ ├── Pg.pm │ │ │ │ └── SQLite.pm │ │ │ ├── Session.pm │ │ │ ├── URL/ │ │ │ │ ├── MySQL.pm │ │ │ │ ├── Pg.pm │ │ │ │ └── SQLite.pm │ │ │ └── URL.pm │ │ ├── DefaultConfig.pm │ │ └── Plugin/ │ │ ├── Headers.pm │ │ └── Helpers.pm │ ├── Lstu.pm │ └── Mounter.pm ├── lstu.conf.template ├── script/ │ ├── application │ └── lstu ├── t/ │ ├── lstu.passwd │ ├── mysql1.conf │ ├── mysql2.conf │ ├── mysql3.conf │ ├── postgresql1.conf │ ├── postgresql2.conf │ ├── postgresql3.conf │ ├── sqlite1.conf │ ├── sqlite2.conf │ ├── sqlite3.conf │ └── test.t ├── themes/ │ ├── default/ │ │ ├── lib/ │ │ │ └── Lstu/ │ │ │ ├── I18N/ │ │ │ │ ├── br.po │ │ │ │ ├── de.po │ │ │ │ ├── en.po │ │ │ │ ├── es.po │ │ │ │ ├── fr.po │ │ │ │ ├── fr_FR.po │ │ │ │ ├── hr.po │ │ │ │ ├── lstu.pot │ │ │ │ ├── oc.po │ │ │ │ ├── pt_BR.po │ │ │ │ └── sv.po │ │ │ └── I18N.pm │ │ ├── public/ │ │ │ ├── browserconfig.xml │ │ │ ├── css/ │ │ │ │ ├── animation.css │ │ │ │ ├── bootstrap-lstu.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── fontelico-codes.css │ │ │ │ ├── fontelico-embedded.css │ │ │ │ ├── fontelico-ie7-codes.css │ │ │ │ ├── fontelico-ie7.css │ │ │ │ ├── fontelico.css │ │ │ │ ├── fontelico.min.css │ │ │ │ └── lstu.css │ │ │ ├── font/ │ │ │ │ └── licenses/ │ │ │ │ ├── Apache License.txt │ │ │ │ └── SIL Open Font License.txt │ │ │ ├── fontello.json │ │ │ └── manifest.json │ │ └── templates/ │ │ ├── api.html.ep │ │ ├── index.html.ep │ │ ├── layouts/ │ │ │ └── default.html.ep │ │ ├── login.html.ep │ │ ├── logout.html.ep │ │ ├── partial/ │ │ │ └── lstu.js.ep │ │ └── stats.html.ep │ └── milligram/ │ ├── Makefile │ ├── lib/ │ │ └── Lstu/ │ │ ├── I18N/ │ │ │ ├── en.po │ │ │ ├── fr.po │ │ │ ├── milligram.pot │ │ │ └── oc.po │ │ └── I18N.pm │ ├── public/ │ │ └── css/ │ │ ├── lstu.css │ │ ├── lstu.min.css │ │ ├── milli-lstu.min.css │ │ ├── milligram.min.css │ │ └── milligram.min.css.map │ └── templates/ │ ├── index.html.ep │ ├── layouts/ │ │ └── default.html.ep │ └── stats.html.ep └── utilities/ ├── bootstrap.json ├── lstu-minion@.service ├── lstu.apache ├── lstu.default ├── lstu.init ├── lstu.nginx ├── lstu.service ├── lstu_upstart.conf ├── migrations/ │ ├── mysql.sql │ ├── postgresql.sql │ └── sqlite.sql └── read_conf.pl