Bookmarks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 1 / 2
40 results tagged configuration  ✕   ✕
Stupid .htaccess Tricks https://perishablepress.com/stupid-htaccess-tricks/
Fri 17 Nov 2023 11:27:52 AM PST archive.org

This article, Stupid .htaccess Tricks, covers just about every .htaccess “trick” in the book, and easily is the site’s most popular resource. I hope that you find it useful, and either way thank you for visiting :)

sysadmin apache configuration howto htaccess archived
A launchd plist generator https://launched.zerowidth.com/
Wed 21 Jun 2023 07:12:32 AM PDT archive.org

Fill out the forms and it'll generate a .plist file for Mac OS X, suitable for autostarting not-desktop stuff. A bit like systemfail, but more annoying because it uses XML. Even gives you commands for installing the file to ~/Library/LaunchAgents/.

sysadmin mac osx generator online configuration
VimConfig https://vimconfig.com/
Tue 04 Apr 2023 02:35:27 PM PDT archive.org

Generate a .vimrc file by checking and unchecking boxes to enable features.

online vim generator configuration interactive
.vimrc Builder https://vimrc-builder.vercel.app/
Tue 04 Apr 2023 09:36:18 AM PDT archive.org

An easy to use graphical builder for .vimrc files. Drag and drop the options you want and it generates the configuration options for you. Copy and paste into your ~/.vimrc file.

Github: https://github.com/dawsbot/vimrc-builder

vim configuration online builder webapps
AdnanHodzic/auto-cpufreq https://github.com/AdnanHodzic/auto-cpufreq
Thu 27 Oct 2022 02:30:23 PM PDT archive.org

Automatic CPU speed & power optimizer for Linux based on active monitoring of laptop's battery state, CPU usage, CPU temperature and system load. Ultimately allowing you to improve battery life without making any compromises.

One of the problems with Linux today on laptops is that CPU will run in unoptimized manner which will negatively reflect on battery life. For example, CPU will run using "performance" governor with turbo boost enabled regardless if it's plugged in to power or not.

Issue can be mitigated by using tools like indicator-cpufreq or cpufreq, but these still require manual action from your side which can be daunting and cumbersome.

Using tools like TLP can help in this situation with extending battery life but it also might come with its own set of problems, like losing turbo boost. With that said, I needed a simple tool which would automatically make "cpufreq" related changes, save battery like TLP, but let Linux kernel do most of the heavy lifting. That's how auto-cpufreq was born.

Please note: auto-cpufreq aims to replace TLP in terms of functionality and after you install auto-cpufreq it's recommended to remove TLP. If both are used for same functionality, i.e: to set CPU frequencies it'll lead to unwanted results like overheating. Hence, only use both tools in tandem if you know what you're doing.

In the AUR.

python linux power management systems configuration
stark0de/nginxpwner https://github.com/stark0de/nginxpwner
Thu 29 Sep 2022 02:56:25 PM PDT archive.org

Nginxpwner is a simple tool to look for common Nginx misconfigurations and vulnerabilities. Give it a list of URLs (Burp Suite is namechecked here) and turn it loose, and it'll look for misconfigurations.

nginx cli infosec auditing python configuration
QMK Keymap Generator and Firmware Builder https://config.qmk.fm/
Tue 06 Sep 2022 10:43:50 AM PDT archive.org

Pick a keyboard that you're configuring from the drop-down. Drag and drop keys onto your keymap. Delete or add layers to the keymap. Bake a firmware .hex image to flash onto your keyboard.

keyboards online generator configuration firmware customization
All PIC microcontrollers https://gputils.sourceforge.io/html-help/index.html
Wed 13 Jul 2022 07:16:05 PM PDT archive.org

Somebody put together a very helpful list of all of the PIC microcontrollers out there, their specifics, and most importantly what their configuration bits (fuses) mean and what the constants map to. For example, MCLRE=off is 0xfdf.

documentation microcontrollers pic configuration fuse bits
InterLinked1/phreakscript https://github.com/InterLinked1/phreakscript
Sun 02 Jan 2022 05:33:35 PM PST archive.org

A utility to automate the installation, maintenance, and debugging of Asterisk/DAHDI, while integrating additional patches to provide the richest telephony experience. Useful for: Automating installation and maintenance of Asterisk, Asterisk Test Suite, Asterisk Test Framework, DAHDI Linux, DAHDI Tools, and related resources; validating Asterisk configuration; finding common syntax errors in dialplan code; finding missing audio files referenced by the Playback, BackGround, and Read applications; suggesting optimizations that can be made to dialplan code to make it more readable and efficient; generating Asterisk user documentation; debugging Asterisk configuration; generating core dumps, automating PhreakNet boilerplate dialplan installation.

Primarily supported on Debian-based Linux systems. Support has also been added for FreeBSD. Pull requests to add support for other Linux distros or BSD are welcome.

script sysadmin telephony asterisk configuration maintenance automation debugging cli voip
jtesta/ssh-audit https://github.com/jtesta/ssh-audit
Thu 18 Nov 2021 05:46:36 PM PST archive.org

ssh-audit is a tool for ssh server and client configuration auditing. Analyzes client and server configuration, connection negotiation parameters, and cryptographic settings and outputs a security report. Has no dependencies.

python sysadmin cli infosec ssh auditing configuration
Pelican Configuration Settings https://egbert.net/blog/articles/pelican-configuration-settings.html
Fri 19 Feb 2021 04:54:47 PM PST archive.org

Someone built a list of all of Pelican's configuration settings and variables, and what they mean. Useful as a reference to the templating language.

python configuration directory software reference blogging
Chapter 22. PCI-Express Runtime D3 (RTD3) PowerManagement http://download.nvidia.com/XFree86/Linux-x86_64/435.17/README/dynamicpowermanagement.html
Fri 11 Dec 2020 12:58:33 PM PST archive.org

How to configure later-generation nVidia drivers to do their own power management now that it's supported on some models.

Applicable to Turing GPUs and Coffee Lake CPUs. Windbringer does not have the former (the GTX 1050Ti is a Pascal architecture, not a Turing architecture). Still, there are options.

linux nvidia drivers configuration power documentation
Push to all remotes of a Git repository with one command /shaare/D4sBaw
Fri 04 Dec 2020 03:22:27 PM PST archive.org

Edit your ~/.gitconfig file and add the following:

[alias]
    pushall = !git remote | xargs -L1 -P0 git push --all --follow-tags

To use it in a Git repository, git pushall after committing changes to your local copy.

git configuration howto notes
support defaulting to SSH remotes · Issue #546 · cli/cli · GitHub https://github.com/cli/cli/issues/546
Thu 03 Dec 2020 05:18:28 PM PST archive.org

Prefer using SSH over HTTP(S) for git.

In your ~/.gitconfig file:

[url "git@github.com:"]
    insteadOf = http://github.com/
    insteadOf = https://github.com/
howto git ssh configuration
On secure-shell security https://sysdogs.com/on-secure-shell-security/
Thu 03 Sep 2020 03:08:33 PM PDT archive.org

Wants to be the "cryptographic right answers" document, but for SSH.

Archived.

Maybe have Glitch monitor it?

/etc/ssh/sshd_config:

Protocol 2
AuthenticationMethods publickey
PasswordAuthentication no
PermitEmptyPasswords no
X11Forwarding no
AllowAgentForwarding no

# The problem with having "MaxAuthTries 2" is, the more keys your
# SSH agent has, the more chances you'll have to get locked out.
# I set it to <my number of SSH keys> +2.
MaxAuthTries 10
MaxSessions 10
HostbasedAuthentication no
IgnoreRhosts yes
PermitRootLogin no

KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256

Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr

MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com
ssh configuration howto sysadmin infosec hardening bestpractices servers risk
Applied Crypto Hardening: bettercrypto.org https://bettercrypto.org/
Mon 03 Aug 2020 08:14:26 PM PDT archive.org

Current version: Version 1.X, 2018-12-21

This guide arose out of the need for system administrators to have an updated, solid, well researched and thought-through guide for configuring SSL, PGP, SSH and other cryptographic tools in the post-Snowden age. Triggered by the NSA leaks in the summer of 2013, many system administrators and IT security officers saw the need to strengthen their encryption settings. This guide is specifically written for these system administrators.

The focus of this guide is merely to give current best practices for configuring complex cipher suites and related parameters in a copy & paste-able manner. The guide tries to stay as concise as is possible for such a complex topic as cryptography. Naturally, it can not be complete. There are many excellent guides (II & SYM, 2012) and best practice documents available when it comes to cryptography. However none of them focuses specifically on what an average system administrator needs for hardening his or her systems' crypto settings.

howto sysadmin linux crypto hardening applications servers ssl tls configuration
BerryBoot v2.0 - bootloader / universal operating system installer [BerryTerminal] https://www.berryterminal.com/doku.php/berryboot
Tue 23 Jul 2019 02:47:44 PM PDT archive.org

A boot selector for the Raspberry Pi. Interactively pick, download, and install multiple OSes for the RasPi to the same SD card. The selection can be changed later. Also lets you use USB drives for storing those OSes instead of an SD card. HDMI enabled.

raspi os bootloaders linux selector gui configuration
How to connect to Bluetooth LE devices without being root (v - Raspberry Pi Forums https://www.raspberrypi.org/forums/viewtopic.php?t=108581
Sun 28 Apr 2019 06:53:45 PM PDT archive.org

Archived.

howto raspbian bluetooth dbus policy configuration
Shaarli Documentation - Theming https://shaarli.readthedocs.io/en/master/Theming/
Tue 21 Aug 2018 03:28:26 PM PDT archive.org

How to override CSS, develop your own, and install new themes for Shaarli.

shaarli documentation css themes configuration howto
Servers for Hackers https://serversforhackers.com/
Fri 17 Aug 2018 04:09:54 PM PDT archive.org

Teaching the server tech you need for development and production. Eliminating the frustration of server configuration. Databases, configuration management, containers, proxies, security, PHP, and much more.

lessons sysadmin howto reference servers databases configuration containers webapps security
page 1 / 2
5054 links, including 361 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn