blob: d4ecdadeea65f53b0b1922aaeab32228b62f10f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<!DOCTYPE html>
<!-- Created on 28.08.2024, 12:39:06 -->
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Policies</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #6495ed;
color: #fff;
padding: 1rem;
text-align: center;
}
.container {
padding: 2rem;
}
.post {
background-color: #fff;
margin-bottom: 1rem;
padding: 1rem;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<header>
<h1>Firefox Policies</h1>
<p>Konfiguration von Firefox über policies.json</p>
</header>
<div class="container">
<div class="post">
<h2>Grundlagen</h2>
<p>Systemweite Konfiguration unter: <b><tt>/etc/firefox/policies/policies.json</tt></b> (auch firefox-esr)</p>
<p>Alternativ unter: <b><tt>/usr/share/firefox-esr/distribution/policies.json</tt>
</b> (für debian firefox-esr)</p>
<br/><br/>
[Verweise:]
<p><a href="https://support.mozilla.org/de/kb/firefox-mithilfe-der-datei-policiesjson-anpassen">https://support.mozilla.org/de/kb/firefox-mithilfe-der-datei-policiesjson-anpassen</a></p>
<p><a href="https://mozilla.github.io/policy-templates/">https://mozilla.github.io/policy-templates/</a></p>
<br/><br/>
</div>
<div class="post">
<h2>KANOTIX Konfiguration</h2>
<p>Mit dem Paket kanotix-firefox-polices</p>
<p>entfernen durch purgen des Paketes <kbd><tt>apt purge kanotix-firefox-policies</tt>s</kbd></p>
<p>Aktuelle config Datei (online): <a target="_blank" rel="noopener noreferrer" href="http://git.acritox.com/kanotix-packages/plain/kanotix-firefox-policies/policies.json">KANOTIX policies.json</a></p>
<p><a target="_blank" rel="noopener noreferrer" href="about:policies">about:policies</a></p>
</div>
</div>
</body>
</html>
|