Clone Mastodon's repository.
# Clone mastodon to ~/live directory
git clone https://github.com/tootsuite/mastodon.git live
# Change directory to ~/live
cd ~/live
| version: "3.2" | |
| services: | |
| # Radarr - https://hotio.dev/containers/radarr/ | |
| radarr: | |
| container_name: radarr | |
| image: ghcr.io/hotio/radarr:latest | |
| restart: unless-stopped | |
| logging: | |
| driver: json-file | |
| network_mode: bridge |
| server: | |
| ########################################################################### | |
| # BASIC SETTINGS | |
| ########################################################################### | |
| # Time to live maximum for RRsets and messages in the cache. If the maximum | |
| # kicks in, responses to clients still get decrementing TTLs based on the | |
| # original (larger) values. When the internal TTL expires, the cache item | |
| # has expired. Can be set lower to force the resolver to query for data | |
| # often, and not trust (very large) TTL values. | |
| cache-max-ttl: 86400 |
| <?php | |
| add_filter( 'wp_resource_hints', 'your_add_resource_hints', 10, 2 ); | |
| /** | |
| * Try to improve performance with resource hints. | |
| * | |
| * WP will output protocol-relative 'dns-prefetch' for all scripts and styles which are enqueued | |
| * from external hosts. | |
| * WP will not do 'preconnect', 'prefetch', or 'prerender' automatically. |
A guide for getting started and best practices for teams new to, or improving their interactions with, GitHub
GitHub's features and capabilities
This document is meant to help new teams to GitHub familiarize themselves with the features and platform, as well as start to explore some of the best practices. While not a complete exploration, it's meant as a introduction to the key tenets of using GitHub for your business. For teams and organizations that desire more one on one support, GitHub Professional Services has many different options available to customize tools, training, and process to best meet your needs. The GitHub offerings listed in the diagram above are just a sampling of the various capabilities and we'd love to create a customized offering to meet your specific organizational needs.
| # Enable request logging in Odoo using one of the following: | |
| # * pass --log-level=debug_rpc | |
| # * or pass --log-handler=odoo.http.rpc.request:DEBUG (to only debug request times) | |
| # * or set the equivalent config option in the Odoo config file | |
| # Then save the following as a munin plugin to monitor the last 5 minutes of your Odoo config file | |
| # Be sure to set the correct path for the Odoo log file, and adjust the variables as needed | |
| #!/bin/bash |
| #!/bin/bash | |
| # Save this file as /usr/bin/apt-pac and chmod +x it. | |
| case "$1" in | |
| autoremove) | |
| pacman -Rns $(pacman -Qdtq); | |
| ;; |
| # run in the terminal, then set as ssl_dhparam in nginx.conf | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 4096 |
| apt-get install wkhtmltopdf | |
| apt-get install xvfb | |
| echo -e '#!/bin/bash\nxvfb-run -a --server-args="-screen 0, 1024x768x24" /usr/bin/wkhtmltopdf -q $*' > /usr/bin/wkhtmltopdf.sh | |
| chmod a+x /usr/bin/wkhtmltopdf.sh | |
| ln -s /usr/bin/wkhtmltopdf.sh /usr/local/bin/wkhtmltopdf | |
| wkhtmltopdf http://www.google.com output.pdf |
| CREATE TABLE IF NOT EXISTS `country` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `iso` char(2) NOT NULL, | |
| `name` varchar(80) NOT NULL, | |
| `nicename` varchar(80) NOT NULL, | |
| `iso3` char(3) DEFAULT NULL, | |
| `numcode` smallint(6) DEFAULT NULL, | |
| `phonecode` int(5) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=latin1; |