Skip to content

Instantly share code, notes, and snippets.

View lintmx's full-sized avatar
仲良くしよっ!

Leo Stock lintmx

仲良くしよっ!
View GitHub Profile
[Unit]
Description=A high performance web server and a reverse proxy server
After=network.target network-online.target nss-lookup.target
[Service]
Type=forking
PIDFile=/var/run/nginx.pid
PrivateDevices=yes
SyslogLevel=err
@lintmx
lintmx / ssh-key
Last active August 21, 2021 17:34
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKqChZPFrC/ojAAOjXlx7JkGDOIOttS7p/knJJ4wttYu lintmx@gmail.com
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILWPPukyu33SZkw5SKSbOKDTQArJPyLkiZy1ropya1ea Server@lintmx

Keybase proof

I hereby claim:

  • I am lintmx on github.
  • I am lintmx (https://keybase.io/lintmx) on keybase.
  • I have a public key whose fingerprint is 1007 AFC0 E724 0DB1 7FF1 740F 5A0C 75DB 2658 C0EF

To claim this, I am signing this object:

@lintmx
lintmx / t1.bat
Created May 10, 2018 09:41
link dir
@echo off
set project_path=%1
set public_path="\public"
set site_path="D:\Dev\sites"
set project_name="\t1"
set pro_path=%site_path%%project_name%
if exist %project_path% (
if exist %pro_path% (
@lintmx
lintmx / WebService.bat
Created May 10, 2018 09:40
Start Web Service
@echo off
@taskkill /f /IM nginx.exe >nul 2>&1
@taskkill /f /IM php-cgi.exe >nul 2>&1
start /d "D:\Dev\nginx" nginx.exe
D:\Dev\RunHiddenConsole.exe D:\php\php72\php-cgi.exe -b 127.0.0.1:9072 -c D:\php\php72\php.ini
D:\Dev\RunHiddenConsole.exe D:\php\php56\php-cgi.exe -b 127.0.0.1:9056 -c D:\php\php56\php.ini