Skip to content

Instantly share code, notes, and snippets.

View fuadnafiz98's full-sized avatar
:octocat:

Md. Muhtasim Fuad fuadnafiz98

:octocat:
View GitHub Profile
@fuadnafiz98
fuadnafiz98 / nginx.conf
Created December 26, 2020 14:55 — forked from v0lkan/nginx.conf
Configuring NGINX for Maximum Throughput Under High Concurrency
user web;
# One worker process per CPU core.
worker_processes 8;
# Also set
# /etc/security/limits.conf
# web soft nofile 65535
# web hard nofile 65535
# /etc/default/nginx
@fuadnafiz98
fuadnafiz98 / .eslintrc.js
Created July 9, 2020 19:31 — forked from nkbt/.eslintrc.js
Strict ESLint config for React, ES6 (based on Airbnb Code style)
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": ["react"],
"ecmaFeatures": {