Home
fozu的技术站
Cancel

telegram-accountmanager

AccountManagerImpl private let queue: Queue private var recordsViews = Bag<(MutableAccountRecordsView, ValuePipe<AccountRecordsView>)>() private var sharedDataViews = Bag<(MutableAc...

set up a web server and host a website

Set up a Web Server and Host a Website on Linode Install NGINX: sudo apt install nginx Create an NGINX configuration file called /etc/nginx/conf.d/example.com.conf (replace this a...

secure your server

Secure Your Server Update Your System–Frequently Add a Limited User Account Harden SSH Access ssh-keygen -b 4096 ssh-copy-id example_user@203.0.113.10 /etc/ssh/sshd_config Disallow root l...

nginx

Configuration file /etc/nginx/nginx.conf /etc/nginx/conf.d/ Fastcgi related fastcgi_buffers 8 16k; fastcgi_buffer_size 32k; fastcgi_connect_timeout 90; fastcgi_send_timeout 90; fastcgi_read_time...

mysql - troubleshooting

Determine which MySQL configuration file is being used How do I find the MySQL my.cnf location /etc/my.cnf /etc/mysql/my.cnf $MYSQL_HOME/my.cnf [datadir]/my.cn...

lamp

LAMP CentOS Ensure that the Linode’s hostname is set. Check your Linode’s hostname. hostname hostname -f Update your system: sudo yum update Apache Install Apache sudo yum install htt...

jekyll

Repo gem install bundler jekyll jekyll new my-awesome-site cd my-awesome-site bundle exec jekyll serve

jwt

This is a example for generating JWT token for App Store Connect API Request JWT Header Field Description alg Encryption Algorithm (ES256 All JWTs ...

git remote-branches

git-book List remote references git ls-remote <remote> git remote show <remote> for remote branches as well as more information Remote-tracking branches Remote-tracking branches a...