I hereby claim:
- I am bajpangosh on github.
- I am bajpangosh (https://keybase.io/bajpangosh) on keybase.
- I have a public key ASCQrbxcN1Zg4c_dRFqTO7wunY82OaU5e0eK8qFpzUc06Ao
To claim this, I am signing this object:
| server { | |
| listen 443 ssl http2; | |
| listen [::]:443 ssl http2; | |
| server_name www.verifiedbyme.xyz; | |
| # SSL | |
| ssl_certificate /etc/nginx/ssl/nginx.crt; | |
| ssl_certificate_key /etc/nginx/ssl/nginx.key; | |
| # reverse proxy |
| # START Nginx Rewrites for Rank Math Sitemaps | |
| rewrite ^/sitemap_index.xml$ /index.php?sitemap=1 last; | |
| rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 last; | |
| # END Nginx Rewrites for Rank Math Sitemaps |
I hereby claim:
To claim this, I am signing this object:
| <div class="video-item"> | |
| <iframe id="video0" src="//www.youtube.com/embed/4DMGfbje7NY?enablejsapi=1&html5=1" frameborder="0" allowfullscreen></iframe> | |
| <button class="play">Play</button> | |
| <button class="stop">Stop</button> | |
| </div> | |
| <div class="video-item"> | |
| <iframe id="video1" src="//www.youtube.com/embed/nJl-qVoEEJI?enablejsapi=1&html5=1" frameborder="0" allowfullscreen></iframe> | |
| <button class="play">Play</button> | |
| <button class="stop">Stop</button> |
| apt-get -y install php7.0-fpm php7.0-curl php7.0-gd php7.0-imap php7.0-mcrypt php7.0-readline php7.0-common php7.0-recode php7.0-mysql php7.0-cli php7.0-curl php7.0-mbstring php7.0-bcmath php7.0-mysql php7.0-opcache php7.0-zip php7.0-xml php-memcached php-imagick php-memcache memcached graphviz php-pear php-xdebug php-msgpack php7.0-soap |
| https://www.google.com/adsense/app?hl=en&noaccount=false#main/upgrade |
| On Ubuntu/Debian distros, you can easily change the timezone by running the command : | |
| sudo dpkg-reconfigure tzdata | |
| You will be prompt with a list of timezones that you can select from. |
| Every time I have to go to terminal, ssh and do this to change the permissions between Joomla (www-data) and FileZilla (ubuntu) | |
| sudo chown -R www-data.www-data /var/www/html (Joomla) | |
| sudo chown -R ubuntu /var/www/html (File Zilla) | |
| How do I set it so that I don't have to change this every time? | |
| Solution | |
| Add the ubuntu user to the www-data group |
| user www-data; | |
| worker_processes auto; | |
| pid /run/nginx.pid; | |
| worker_rlimit_nofile 100000; | |
| error_log /var/log/nginx/error.log crit; | |
| events { | |
| worker_connections 4000; |
| (for %i in (*.mp4) do @echo file '%i') > mylist.txt | |
| ffmpeg -f concat -i mylist.txt -c copy output.mp4 |