kubectl create namespace nginx-api kubectl create namespace nginx-front| # Browser caching of static assets. | |
| location ~* \.(jpg|jpeg|png|gif|ico|css|js|pdf)$ { | |
| expires 7d; | |
| add_header Cache-Control "public, no-transform"; | |
| } | |
| # Media: images, icons, video, audio send expires headers | |
| location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm)$ { | |
| expires 1M; | |
| access_log off; |
| module.exports = { | |
| parser: '@typescript-eslint/parser', | |
| parserOptions: { | |
| project: 'tsconfig.json', | |
| sourceType: 'module', | |
| }, | |
| plugins: ['@typescript-eslint/eslint-plugin'], | |
| extends: [ | |
| 'plugin:@typescript-eslint/recommended', | |
| 'prettier/@typescript-eslint', |
sudo pacman -Syu zsh
You do not need to install manjaro-zsh-config and all the other related packages like zsh-syntax-highlighting, zsh-history-substring-search, zsh-autosuggestions, etc., as we will use Oh My Zsh.