# configuration file /etc/nginx/nginx.conf: user www-data; worker_processes auto; pid /run/nginx.pid; include /etc/nginx/modules-enabled/*.conf; events { worker_connections 1024; multi_accept on; } http { server_names_hash_bucket_size 128; ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; server_tokens off; # server_names_hash_bucket_size 64; server_name_in_redirect off; include /etc/nginx/mime.types; default_type application/octet-stream; ## # SSL Settings ## ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE ssl_prefer_server_ciphers on; ## # Logging Settings ## access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; ## # Gzip Settings ## #gzip on; #gzip_vary on; #gzip_proxied any; #gzip_comp_level 6; #gzip_buffers 16 8k; #gzip_http_version 1.1; #gzip_min_length 256; # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; include /etc/nginx/configs/performance/common.conf; include /etc/nginx/configs/performance/gzip.conf; include /etc/nginx/configs/security/headers.conf; include /etc/nginx/configs/security/bots.conf; ## # Virtual Host Configs ## #include conf.d/map.conf; include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; } #mail { # # See sample authentication script at: # # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript # # # auth_http localhost/auth.php; # # pop3_capabilities "TOP" "USER"; # # imap_capabilities "IMAP4rev1" "UIDPLUS"; # # server { # listen localhost:110; # protocol pop3; # proxy on; # } # # server { # listen localhost:143; # protocol imap; # proxy on; # } #} # configuration file /etc/nginx/modules-enabled/50-mod-http-image-filter.conf: load_module modules/ngx_http_image_filter_module.so; # configuration file /etc/nginx/modules-enabled/50-mod-http-xslt-filter.conf: load_module modules/ngx_http_xslt_filter_module.so; # configuration file /etc/nginx/modules-enabled/50-mod-mail.conf: load_module modules/ngx_mail_module.so; # configuration file /etc/nginx/modules-enabled/50-mod-stream.conf: load_module modules/ngx_stream_module.so; # configuration file /etc/nginx/mime.types: types { text/html html htm shtml; text/css css; text/xml xml; image/gif gif; image/jpeg jpeg jpg; application/javascript js; application/atom+xml atom; application/rss+xml rss; text/mathml mml; text/plain txt; text/vnd.sun.j2me.app-descriptor jad; text/vnd.wap.wml wml; text/x-component htc; image/png png; image/tiff tif tiff; image/vnd.wap.wbmp wbmp; image/x-icon ico; image/x-jng jng; image/x-ms-bmp bmp; image/svg+xml svg svgz; image/webp webp; application/font-woff woff; application/java-archive jar war ear; application/json json; application/mac-binhex40 hqx; application/msword doc; application/pdf pdf; application/postscript ps eps ai; application/rtf rtf; application/vnd.apple.mpegurl m3u8; application/vnd.ms-excel xls; application/vnd.ms-fontobject eot; application/vnd.ms-powerpoint ppt; application/vnd.wap.wmlc wmlc; application/vnd.google-earth.kml+xml kml; application/vnd.google-earth.kmz kmz; application/x-7z-compressed 7z; application/x-cocoa cco; application/x-java-archive-diff jardiff; application/x-java-jnlp-file jnlp; application/x-makeself run; application/x-perl pl pm; application/x-pilot prc pdb; application/x-rar-compressed rar; application/x-redhat-package-manager rpm; application/x-sea sea; application/x-shockwave-flash swf; application/x-stuffit sit; application/x-tcl tcl tk; application/x-x509-ca-cert der pem crt; application/x-xpinstall xpi; application/xhtml+xml xhtml; application/xspf+xml xspf; application/zip zip; application/octet-stream bin exe dll; application/octet-stream deb; application/octet-stream dmg; application/octet-stream iso img; application/octet-stream msi msp msm; application/vnd.openxmlformats-officedocument.wordprocessingml.document docx; application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx; application/vnd.openxmlformats-officedocument.presentationml.presentation pptx; audio/midi mid midi kar; audio/mpeg mp3; audio/ogg ogg; audio/x-m4a m4a; audio/x-realaudio ra; video/3gpp 3gpp 3gp; video/mp2t ts; video/mp4 mp4; video/mpeg mpeg mpg; video/quicktime mov; video/webm webm; video/x-flv flv; video/x-m4v m4v; video/x-mng mng; video/x-ms-asf asx asf; video/x-ms-wmv wmv; video/x-msvideo avi; } # configuration file /etc/nginx/configs/performance/common.conf: # Buffers # handles the client buffer size (POST actions, such as form submissions) sent to NGINX client_body_buffer_size 10K; # handless the client header size client_header_buffer_size 1k; # maximum allowed size for a client request client_max_body_size 8m; # maximum number of buffers for large client headers large_client_header_buffers 4 4k; # Timeouts client_body_timeout 12; client_header_timeout 12; #keepalive_timeout 30; send_timeout 20; ## To limit the rate NGINX will accept incoming requests. ## Configure a shared memory zone named one (which will store the requests for a specified key) and limit it to 30 requests per minute ## For our specified key, we'll use the binary_remote_addr (client IP address) limit_req_zone $binary_remote_addr zone=one:10m rate=5r/s; ## Directive describes the zone, in which the session states are stored i.e. store in slimits. ### ## 1m can handle 32000 sessions with 32 bytes/session, set to 5m x 32000 session ### # limit_zone slimits $binary_remote_addr 2m; ### Control maximum number of simultaneous connections for one session i.e. ### ### restricts the amount of connections from a single ip address ### # limit_conn slimits 10; ## !Alternative # limit_conn_zone $binary_remote_addr zone=addr:5m; # limit_conn addr 1; # configuration file /etc/nginx/configs/performance/gzip.conf: # Compression # Enable Gzip compressed. gzip on; gzip_static on; # Enable compression both for HTTP/1.0 and HTTP/1.1. gzip_http_version 1.1; # Compression level (1-9). # 5 is a perfect compromise between size and cpu usage, offering about # 75% reduction for most ascii files (almost identical to level 9). gzip_comp_level 5; # Don't compress anything that's already small and unlikely to shrink much # if at all (the default is 20 bytes, which is bad as that usually leads to # larger files after gzipping). gzip_min_length 256; # Compress data even for clients that are connecting to us via proxies, # identified by the "Via" header (required for CloudFront). gzip_proxied any; # Tell proxies to cache both the gzipped and regular version of a resource # whenever the client's Accept-Encoding capabilities header varies; # Avoids the issue where a non-gzip capable client (which is extremely rare # today) would display gibberish if their proxy gave them the gzipped version. gzip_vary on; # Compress all output labeled with one of the following MIME-types. gzip_types application/atom+xml application/javascript application/json application/rss+xml application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/svg+xml image/x-icon text/css text/plain text/x-component; # text/html is always compressed by HttpGzipModule # configuration file /etc/nginx/configs/security/headers.conf: ## # 1. CLICKJACKING Protection ## # Use the X-Frame-Options header to prevent Clickjacking vulnerability on your website. By implementing this header, you instruct the browser not to embed your web page in frame/iframe. add_header X-Frame-Options SAMEORIGIN; # add_header X-Frame-Options DENY; ## # 2. MIME Protection ## # Prevent MIME types security risk by adding this header to your web page’s HTTP response. Having this header instruct browser to consider files types as defined and disallow content sniffing. add_header X-Content-Type-Options nosniff; ## # 3. XSS Protection ## # X-XSS-Protection header can prevent some level of XSS (cross-site-scripting) attacks, and this is compatible with Chrome, Opera, Safari & Android. Google, Facebook, Github use this header, and most of the penetration testing consultancy will ask you to implement this. add_header X-XSS-Protection "1; mode=block"; ## # 4. HSTS (HTTP Strict Transport Security) ## # To ensure all communication from a browser is sent over HTTPS (HTTP Secure). This prevents HTTPS click through prompts and redirects HTTP requests to HTTPS. Before implementing this header, you must ensure all your website page is accessible over HTTPS else they will be blocked. # add_header Strict-Transport-Security 'max-age=31536000; includeSubDomains; preload'; ## # 5. HPKP (HTTP Public Key Pinning) ## # https://scotthelme.co.uk/hpkp-http-public-key-pinning/ ## # Minimize the man-in-the-middle (MITM) attacks risk by pinning certificate. This is possible with HPKP (HTTP Public Key Pinning) header. You can pin the root certificate public key or immediate certificate. At the time of writing, HPKP currently works in Firefox and Chrome and support SHA-256 hash algorithm. # add_header Public-Key-Pins 'pin-sha256="X3pGTSOuJeEVw989IJ/cEtXUEmy52zs1TZQrU06KUKg="; \ # pin-sha256="MHJYVThihUrJcxW6wcqyOISTXIsInsdj3xK8QrZbHec="; \ # pin-sha256="isi41AizREkLvvft0IRW4u3XMFR2Yg7bvrF7padyCJg="; \ # max-age=10'; ## # 6. X-Permitted-Cross-Domain-Policies ## # Using Adobe products like PDF, Flash, etc.? You can implement this header to instruct the browser how to handle the requests over a cross-domain. By implementing this header, you restrict loading your site’s assets from other domains to avoid resource abuse. add_header X-Permitted-Cross-Domain-Policies master-only; ## # 7. Referrer-Policy ## # # Options: no-reffer, no-referrer-when-downgrade, unsafe-url, same-origin, strict-origin, strict-origin-when-cross-origin, origin-when-cross-origin # add_header Referrer-Policy same-origin; ## # 8. CSP (Content Security Policy) ## # with Content Security Policy (CSP) enabled(and a browser that supports it(http://caniuse.com/#feat=contentsecuritypolicy), # you can tell the browser that it can only download content from the domains you explicitly allow # http://www.html5rocks.com/en/tutorials/security/content-security-policy/ # https://www.owasp.org/index.php/Content_Security_Policy # add_header Content-Security-Policy "default-src 'self'; # script-src 'self' https://ssl.google-analytics.com https://assets.zendesk.com https://connect.facebook.net; # img-src 'self' https://ssl.google-analytics.com https://s-static.ak.facebook.com https://assets.zendesk.com; # style-src 'self' https://fonts.googleapis.com https://assets.zendesk.com; # font-src 'self' https://themes.googleusercontent.com; # frame-src https://assets.zendesk.com https://www.facebook.com https://s-static.ak.facebook.com https://tautt.zendesk.com; # object-src 'none'"; # configuration file /etc/nginx/configs/security/bots.conf: map $http_user_agent $limit_bots { default 0; # ~*(bing|yandex|msnbot) 1; ~*(AltaVista|Slurp|BlackWidow|ChinaClaw|Custo|DISCo|Download|Demon|eCatch|EirGrabber|EmailSiphon|EmailWolf|SuperHTTP|Surfbot|WebWhacker) 1; ~*(Express|WebPictures|ExtractorPro|EyeNetIE|FlashGet|GetRight|GetWeb!|Go!Zilla|Go-Ahead-Got-It|GrabNet|Grafula|HMView|Go!Zilla|Go-Ahead-Got-It) 1; ~*(rafula|HMView|HTTrack|Stripper|Sucker|Indy|InterGET|Ninja|JetCar|Spider|larbin|LeechFTP|Downloader|tool|Navroad|NearSite|NetAnts|tAkeOut|WWWOFFLE) 1; ~*(GrabNet|NetSpider|Vampire|NetZIP|Octopus|Offline|PageGrabber|Foto|pavuk|pcBrowser|RealDownload|ReGet|SiteSnagger|SmartDownload|SuperBot|WebSpider) 1; ~*(Teleport|VoidEYE|Collector|WebAuto|WebCopier|WebFetch|WebGo|WebLeacher|WebReaper|WebSauger|eXtractor|Quester|WebStripper|WebZIP|Wget|Widow|Zeus) 1; ~*(Twengabot|htmlparser|libwww|Python|perl|urllib|scan|Curl|email|PycURL|Pyth|PyQ|WebCollector|WebCopy|webcraw) 1; } # configuration file /etc/nginx/conf.d/map.conf: map $sent_http_content_type $expires { default off; text/html epoch; text/css 12h; application/javascript 12h; ~(image|font|audio|video)/ 1d; } #24h #7d map $sent_http_content_type $logging { default 0; text/html 1; } # configuration file /etc/nginx/sites-enabled/100x.one: server { server_name 100x.one; # Log files for Debugging access_log /var/log/nginx/100x.one-access.log; error_log /var/log/nginx/100x.one-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/100x.one/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/100x.one/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = 100x.one) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name 100x.one; return 404; # managed by Certbot } # configuration file /etc/nginx/fastcgi_params: fastcgi_param QUERY_STRING $query_string; fastcgi_param REQUEST_METHOD $request_method; fastcgi_param CONTENT_TYPE $content_type; fastcgi_param CONTENT_LENGTH $content_length; fastcgi_param SCRIPT_NAME $fastcgi_script_name; fastcgi_param REQUEST_URI $request_uri; fastcgi_param DOCUMENT_URI $document_uri; fastcgi_param DOCUMENT_ROOT $document_root; fastcgi_param SERVER_PROTOCOL $server_protocol; fastcgi_param REQUEST_SCHEME $scheme; fastcgi_param HTTPS $https if_not_empty; fastcgi_param GATEWAY_INTERFACE CGI/1.1; fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; fastcgi_param REMOTE_ADDR $remote_addr; fastcgi_param REMOTE_PORT $remote_port; fastcgi_param SERVER_ADDR $server_addr; fastcgi_param SERVER_PORT $server_port; fastcgi_param SERVER_NAME $server_name; # PHP only, required if PHP was built with --enable-force-cgi-redirect fastcgi_param REDIRECT_STATUS 200; # configuration file /etc/letsencrypt/options-ssl-nginx.conf: # This file contains important security parameters. If you modify this file # manually, Certbot will be unable to automatically provide future security # updates. Instead, Certbot will print and log an error message with a path to # the up-to-date file that you will need to refer to when manually updating # this file. ssl_session_cache shared:le_nginx_SSL:10m; ssl_session_timeout 1440m; ssl_session_tickets off; ssl_protocols TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers off; ssl_ciphers "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-SHA"; # configuration file /etc/nginx/sites-enabled/1md.me: server { server_name 1md.me; # Log files for Debugging access_log /var/log/nginx/1md.me-access.log; error_log /var/log/nginx/1md.me-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/1md.me/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/1md.me/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = 1md.me) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name 1md.me; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/L.raiseauthority.com: server { listen 80; server_name L.raiseauthority.com; # Log files for Debugging access_log /var/log/nginx/L.raiseauthority.com-access.log; error_log /var/log/nginx/L.raiseauthority.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/Www.MyAnyPage.com: server { listen 80; server_name Www.MyAnyPage.com; # Log files for Debugging access_log /var/log/nginx/Www.MyAnyPage.com-access.log; error_log /var/log/nginx/Www.MyAnyPage.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/a99.in: server { server_name a99.in; # Log files for Debugging access_log /var/log/nginx/a99.in-access.log; error_log /var/log/nginx/a99.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/a99.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/a99.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = a99.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name a99.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/aaajerseyschina.com: server { server_name aaajerseyschina.com; # Log files for Debugging access_log /var/log/nginx/aaajerseyschina.com-access.log; error_log /var/log/nginx/aaajerseyschina.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/aaajerseyschina.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/aaajerseyschina.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = aaajerseyschina.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name aaajerseyschina.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/academy.daeshawnastyles.com: server { server_name academy.daeshawnastyles.com; # Log files for Debugging access_log /var/log/nginx/academy.daeshawnastyles.com-access.log; error_log /var/log/nginx/academy.daeshawnastyles.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/academy.daeshawnastyles.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/academy.daeshawnastyles.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = academy.daeshawnastyles.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name academy.daeshawnastyles.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/agendar.transformate.net: server { server_name agendar.transformate.net; # Log files for Debugging access_log /var/log/nginx/agendar.transformate.net-access.log; error_log /var/log/nginx/agendar.transformate.net-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/agendar.transformate.net/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/agendar.transformate.net/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = agendar.transformate.net) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name agendar.transformate.net; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/albums.louflores.art: server { server_name albums.louflores.art; # Log files for Debugging access_log /var/log/nginx/albums.louflores.art-access.log; error_log /var/log/nginx/albums.louflores.art-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/albums.louflores.art/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/albums.louflores.art/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = albums.louflores.art) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name albums.louflores.art; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/analedit.com: server { server_name analedit.com; # Log files for Debugging access_log /var/log/nginx/analedit.com-access.log; error_log /var/log/nginx/analedit.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/analedit.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/analedit.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = analedit.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name analedit.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/api.linkjoy.io: server { # listen [::]:80 ipv6only=on; # Log files for Debugging access_log /var/log/nginx/linkjoy-api-access.log; error_log /var/log/nginx/linkjoy-api-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; # Your Domain Name server_name api.linkjoy.io www.api.linkjoy.io; #add_header Cache-Control "public"; #expires $expires; location / { if ($limit_bots = 1) { return 403; } # limit_req zone=one burst=5; try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; # limit_req zone=one burst=5; } #include /etc/nginx/configs/performance/cache.conf; #include /etc/nginx/configs/security/access.conf; listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/api.linkjoy.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/api.linkjoy.io/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = api.linkjoy.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name api.linkjoy.io www.api.linkjoy.io; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/app.cluevest.com: server { server_name app.cluevest.com; # Log files for Debugging access_log /var/log/nginx/app.cluevest.com-access.log; error_log /var/log/nginx/app.cluevest.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/app.cluevest.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/app.cluevest.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = app.cluevest.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name app.cluevest.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/app.linkjoy.io: server { # listen [::]:80 ipv6only=on; # Log files for Debugging access_log /var/log/nginx/linkjoy-app-access.log; error_log /var/log/nginx/linkjoy-app-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; # Your Domain Name server_name app.linkjoy.io www.app.linkjoy.io; #add_header Cache-Control "public"; #expires $expires; location / { if ($limit_bots = 1) { return 403; } limit_req zone=one burst=5; try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { # if ($request_uri != "/maintenance"){ # rewrite ^/ https://app.linkjoy.io/maintenance; #} try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; limit_req zone=one burst=5; } include /etc/nginx/configs/performance/cache.conf; #include /etc/nginx/configs/security/access.conf; listen [::]:443 ssl http2 ipv6only=on; listen 443 ssl http2; #listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/app.linkjoy.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/app.linkjoy.io/privkey.pem; # managed by Certbot # include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5; } server { if ($host = app.linkjoy.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name app.linkjoy.io www.app.linkjoy.io; return 404; # managed by Certbot } # configuration file /etc/nginx/configs/performance/cache.conf: location ~* \.(?:ico|atom|bmp|bz2|css|doc|docx|eot|exe|gif|gz|jpeg|jpg|js|mid|midi|mp4|ogg|ogv|otf|png|ppt|rar|rss|rtf|svg|svgz|swf|tar|tgz|ttf|txt|wav|woff|woff2|xml|xls|xlsx|zip)$ { #location ~* \.(?:ico|gif|jpe?g|png|htc|xml|otf|ttf|eot|woff|woff2|svg)$ { expires 1d; add_header Vary Accept-Encoding; access_log off; log_not_found off; add_header Cache-Control private; ## No need to bleed constant updates. Send the all shebang in one ## fell swoop. tcp_nodelay off; ## Set the OS file cache. open_file_cache max=3000 inactive=120s; open_file_cache_valid 4h; open_file_cache_min_uses 2; open_file_cache_errors off; } location ~* \.(css|js|html)$ { expires 12h; add_header Vary Accept-Encoding; access_log on; add_header Cache-Control public; } # configuration file /etc/nginx/sites-enabled/aqui.galileatv.info: server { server_name aqui.galileatv.info; # Log files for Debugging access_log /var/log/nginx/aqui.galileatv.info-access.log; error_log /var/log/nginx/aqui.galileatv.info-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/aqui.galileatv.info/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/aqui.galileatv.info/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = aqui.galileatv.info) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name aqui.galileatv.info; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/authw.it: server { server_name authw.it; # Log files for Debugging access_log /var/log/nginx/authw.it-access.log; error_log /var/log/nginx/authw.it-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/authw.it/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/authw.it/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = authw.it) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name authw.it; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/av.autovidal.online: server { server_name av.autovidal.online; # Log files for Debugging access_log /var/log/nginx/av.autovidal.online-access.log; error_log /var/log/nginx/av.autovidal.online-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/av.autovidal.online/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/av.autovidal.online/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = av.autovidal.online) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name av.autovidal.online; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bcd.talknative.co: server { server_name bcd.talknative.co; # Log files for Debugging access_log /var/log/nginx/bcd.talknative.co-access.log; error_log /var/log/nginx/bcd.talknative.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bcd.talknative.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bcd.talknative.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bcd.talknative.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bcd.talknative.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.annalizayalung.com: server { server_name bio.annalizayalung.com; # Log files for Debugging access_log /var/log/nginx/bio.annalizayalung.com-access.log; error_log /var/log/nginx/bio.annalizayalung.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.annalizayalung.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.annalizayalung.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.annalizayalung.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.annalizayalung.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.bessycup.com: server { server_name bio.bessycup.com; # Log files for Debugging access_log /var/log/nginx/bio.bessycup.com-access.log; error_log /var/log/nginx/bio.bessycup.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.bessycup.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.bessycup.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.bessycup.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.bessycup.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.bestlapcheong.com: server { server_name bio.bestlapcheong.com; # Log files for Debugging access_log /var/log/nginx/bio.bestlapcheong.com-access.log; error_log /var/log/nginx/bio.bestlapcheong.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.bestlapcheong.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.bestlapcheong.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.bestlapcheong.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.bestlapcheong.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.buildgroove.com: server { server_name bio.buildgroove.com; # Log files for Debugging access_log /var/log/nginx/bio.buildgroove.com-access.log; error_log /var/log/nginx/bio.buildgroove.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.buildgroove.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.buildgroove.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.buildgroove.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.buildgroove.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.charlie.eco: server { server_name bio.charlie.eco; # Log files for Debugging access_log /var/log/nginx/bio.charlie.eco-access.log; error_log /var/log/nginx/bio.charlie.eco-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.charlie.eco/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.charlie.eco/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.charlie.eco) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.charlie.eco; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.daeshawnagray.com: server { server_name bio.daeshawnagray.com; # Log files for Debugging access_log /var/log/nginx/bio.daeshawnagray.com-access.log; error_log /var/log/nginx/bio.daeshawnagray.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.daeshawnagray.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.daeshawnagray.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.daeshawnagray.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.daeshawnagray.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.daeshawnastyles.com: server { server_name bio.daeshawnastyles.com; # Log files for Debugging access_log /var/log/nginx/bio.daeshawnastyles.com-access.log; error_log /var/log/nginx/bio.daeshawnastyles.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.daeshawnastyles.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.daeshawnastyles.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.daeshawnastyles.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.daeshawnastyles.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.dangerousdesignstudio.com: server { server_name bio.dangerousdesignstudio.com; # Log files for Debugging access_log /var/log/nginx/bio.dangerousdesignstudio.com-access.log; error_log /var/log/nginx/bio.dangerousdesignstudio.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.dangerousdesignstudio.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.dangerousdesignstudio.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.dangerousdesignstudio.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.dangerousdesignstudio.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.earthstewards.nz: server { listen 80; server_name bio.earthstewards.nz; # Log files for Debugging access_log /var/log/nginx/bio.earthstewards.nz-access.log; error_log /var/log/nginx/bio.earthstewards.nz-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/bio.eightysevenweb.com: server { server_name bio.eightysevenweb.com; # Log files for Debugging access_log /var/log/nginx/bio.eightysevenweb.com-access.log; error_log /var/log/nginx/bio.eightysevenweb.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.eightysevenweb.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.eightysevenweb.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.eightysevenweb.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.eightysevenweb.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.forward.me: server { server_name bio.forward.me; # Log files for Debugging access_log /var/log/nginx/bio.forward.me-access.log; error_log /var/log/nginx/bio.forward.me-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.forward.me/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.forward.me/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.forward.me) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.forward.me; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.give2pets.org: server { server_name bio.give2pets.org; # Log files for Debugging access_log /var/log/nginx/bio.give2pets.org-access.log; error_log /var/log/nginx/bio.give2pets.org-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.give2pets.org/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.give2pets.org/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.give2pets.org) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.give2pets.org; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.honeycombislands.com: server { server_name bio.honeycombislands.com; # Log files for Debugging access_log /var/log/nginx/bio.honeycombislands.com-access.log; error_log /var/log/nginx/bio.honeycombislands.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.honeycombislands.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.honeycombislands.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.honeycombislands.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.honeycombislands.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.honeycombislandsacademy.com: server { server_name bio.honeycombislandsacademy.com; # Log files for Debugging access_log /var/log/nginx/bio.honeycombislandsacademy.com-access.log; error_log /var/log/nginx/bio.honeycombislandsacademy.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.honeycombislandsacademy.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.honeycombislandsacademy.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.honeycombislandsacademy.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.honeycombislandsacademy.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.hseu.cc: server { server_name bio.hseu.cc; # Log files for Debugging access_log /var/log/nginx/bio.hseu.cc-access.log; error_log /var/log/nginx/bio.hseu.cc-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.hseu.cc/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.hseu.cc/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.hseu.cc) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.hseu.cc; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.htrk.link: server { server_name bio.htrk.link; # Log files for Debugging access_log /var/log/nginx/bio.htrk.link-access.log; error_log /var/log/nginx/bio.htrk.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.htrk.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.htrk.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.htrk.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.htrk.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.jaxonjolley.com: server { server_name bio.jaxonjolley.com; # Log files for Debugging access_log /var/log/nginx/bio.jaxonjolley.com-access.log; error_log /var/log/nginx/bio.jaxonjolley.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.jaxonjolley.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.jaxonjolley.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.jaxonjolley.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.jaxonjolley.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.jeremybursey.com: server { listen 80; server_name bio.jeremybursey.com; # Log files for Debugging access_log /var/log/nginx/bio.jeremybursey.com-access.log; error_log /var/log/nginx/bio.jeremybursey.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/bio.kaiz.nz: server { listen 80; server_name bio.kaiz.nz; # Log files for Debugging access_log /var/log/nginx/bio.kaiz.nz-access.log; error_log /var/log/nginx/bio.kaiz.nz-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/bio.katherynsavannah.com: server { server_name bio.katherynsavannah.com; # Log files for Debugging access_log /var/log/nginx/bio.katherynsavannah.com-access.log; error_log /var/log/nginx/bio.katherynsavannah.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.katherynsavannah.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.katherynsavannah.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.katherynsavannah.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.katherynsavannah.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.kentuckynotary.net: server { server_name bio.kentuckynotary.net; # Log files for Debugging access_log /var/log/nginx/bio.kentuckynotary.net-access.log; error_log /var/log/nginx/bio.kentuckynotary.net-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.kentuckynotary.net/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.kentuckynotary.net/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.kentuckynotary.net) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.kentuckynotary.net; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.linabelle.com: server { server_name bio.linabelle.com; # Log files for Debugging access_log /var/log/nginx/bio.linabelle.com-access.log; error_log /var/log/nginx/bio.linabelle.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.linabelle.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.linabelle.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.linabelle.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.linabelle.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.linkoptimum.com: server { server_name bio.linkoptimum.com; # Log files for Debugging access_log /var/log/nginx/bio.linkoptimum.com-access.log; error_log /var/log/nginx/bio.linkoptimum.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.linkoptimum.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.linkoptimum.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.linkoptimum.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.linkoptimum.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.malcolm.media: server { server_name bio.malcolm.media; # Log files for Debugging access_log /var/log/nginx/bio.malcolm.media-access.log; error_log /var/log/nginx/bio.malcolm.media-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.malcolm.media/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.malcolm.media/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.malcolm.media) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.malcolm.media; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.marketshop.pl: server { server_name bio.marketshop.pl; # Log files for Debugging access_log /var/log/nginx/bio.marketshop.pl-access.log; error_log /var/log/nginx/bio.marketshop.pl-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.marketshop.pl/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.marketshop.pl/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.marketshop.pl) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.marketshop.pl; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.melodygrace.us: server { server_name bio.melodygrace.us; # Log files for Debugging access_log /var/log/nginx/bio.melodygrace.us-access.log; error_log /var/log/nginx/bio.melodygrace.us-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.melodygrace.us/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.melodygrace.us/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.melodygrace.us) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.melodygrace.us; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.nationalhousingresourcecenter.com: server { server_name bio.nationalhousingresourcecenter.com; # Log files for Debugging access_log /var/log/nginx/bio.nationalhousingresourcecenter.com-access.log; error_log /var/log/nginx/bio.nationalhousingresourcecenter.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ /.well-known { allow all; root /var/www/html; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.nationalhousingresourcecenter.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.nationalhousingresourcecenter.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = bio.nationalhousingresourcecenter.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.nationalhousingresourcecenter.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.northstarhousingsolutions.com: server { server_name bio.northstarhousingsolutions.com; # Log files for Debugging access_log /var/log/nginx/bio.northstarhousingsolutions.com-access.log; error_log /var/log/nginx/bio.northstarhousingsolutions.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ /.well-known { allow all; root /var/www/html; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.northstarhousingsolutions.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.northstarhousingsolutions.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = bio.northstarhousingsolutions.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.northstarhousingsolutions.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.omgojai.com: server { server_name bio.omgojai.com; # Log files for Debugging access_log /var/log/nginx/bio.omgojai.com-access.log; error_log /var/log/nginx/bio.omgojai.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.omgojai.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.omgojai.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.omgojai.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.omgojai.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.parasmedia.com: server { server_name bio.parasmedia.com; # Log files for Debugging access_log /var/log/nginx/bio.parasmedia.com-access.log; error_log /var/log/nginx/bio.parasmedia.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.parasmedia.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.parasmedia.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.parasmedia.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.parasmedia.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.profitabletherapist.com: server { server_name bio.profitabletherapist.com; # Log files for Debugging access_log /var/log/nginx/bio.profitabletherapist.com-access.log; error_log /var/log/nginx/bio.profitabletherapist.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.profitabletherapist.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.profitabletherapist.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.profitabletherapist.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.profitabletherapist.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.rayofla.com: server { server_name bio.rayofla.com; # Log files for Debugging access_log /var/log/nginx/bio.rayofla.com-access.log; error_log /var/log/nginx/bio.rayofla.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.rayofla.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.rayofla.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.rayofla.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.rayofla.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.saaristonpuoti.fi: server { listen 80; server_name bio.saaristonpuoti.fi; # Log files for Debugging access_log /var/log/nginx/bio.saaristonpuoti.fi-access.log; error_log /var/log/nginx/bio.saaristonpuoti.fi-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/bio.satriapamudji.com: server { server_name bio.satriapamudji.com; # Log files for Debugging access_log /var/log/nginx/bio.satriapamudji.com-access.log; error_log /var/log/nginx/bio.satriapamudji.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.satriapamudji.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.satriapamudji.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.satriapamudji.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.satriapamudji.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.sbcmd.com: server { server_name bio.sbcmd.com; # Log files for Debugging access_log /var/log/nginx/bio.sbcmd.com-access.log; error_log /var/log/nginx/bio.sbcmd.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.sbcmd.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.sbcmd.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.sbcmd.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.sbcmd.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.stackyourcoins.com: server { server_name bio.stackyourcoins.com; # Log files for Debugging access_log /var/log/nginx/bio.stackyourcoins.com-access.log; error_log /var/log/nginx/bio.stackyourcoins.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.stackyourcoins.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.stackyourcoins.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.stackyourcoins.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.stackyourcoins.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.stackyourhouses.com: server { server_name bio.stackyourhouses.com; # Log files for Debugging access_log /var/log/nginx/bio.stackyourhouses.com-access.log; error_log /var/log/nginx/bio.stackyourhouses.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ /.well-known { allow all; root /var/www/html; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.stackyourhouses.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.stackyourhouses.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = bio.stackyourhouses.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.stackyourhouses.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.stevieandmarli.com: server { server_name bio.stevieandmarli.com; # Log files for Debugging access_log /var/log/nginx/bio.stevieandmarli.com-access.log; error_log /var/log/nginx/bio.stevieandmarli.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.stevieandmarli.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.stevieandmarli.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.stevieandmarli.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.stevieandmarli.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.titanfitness.com.au: server { server_name bio.titanfitness.com.au; # Log files for Debugging access_log /var/log/nginx/bio.titanfitness.com.au-access.log; error_log /var/log/nginx/bio.titanfitness.com.au-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.titanfitness.com.au/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.titanfitness.com.au/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.titanfitness.com.au) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.titanfitness.com.au; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.twilighttint.link: server { server_name bio.twilighttint.link; # Log files for Debugging access_log /var/log/nginx/bio.twilighttint.link-access.log; error_log /var/log/nginx/bio.twilighttint.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.twilighttint.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.twilighttint.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.twilighttint.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.twilighttint.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.urbanartsdigital.com: server { server_name bio.urbanartsdigital.com; # Log files for Debugging access_log /var/log/nginx/bio.urbanartsdigital.com-access.log; error_log /var/log/nginx/bio.urbanartsdigital.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.urbanartsdigital.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.urbanartsdigital.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.urbanartsdigital.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.urbanartsdigital.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.yasafburshan.com: server { server_name bio.yasafburshan.com; # Log files for Debugging access_log /var/log/nginx/bio.yasafburshan.com-access.log; error_log /var/log/nginx/bio.yasafburshan.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.yasafburshan.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.yasafburshan.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.yasafburshan.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.yasafburshan.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/bio.yashshah.in: server { server_name bio.yashshah.in; # Log files for Debugging access_log /var/log/nginx/bio.yashshah.in-access.log; error_log /var/log/nginx/bio.yashshah.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/bio.yashshah.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/bio.yashshah.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = bio.yashshah.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name bio.yashshah.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/biolinks.one: server { server_name biolinks.one; # Log files for Debugging access_log /var/log/nginx/biolinks.one-access.log; error_log /var/log/nginx/biolinks.one-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/biolinks.one/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/biolinks.one/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = biolinks.one) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name biolinks.one; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/books.jeremybursey.com: server { listen 80; server_name books.jeremybursey.com; # Log files for Debugging access_log /var/log/nginx/books.jeremybursey.com-access.log; error_log /var/log/nginx/books.jeremybursey.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/cacs.link: server { server_name cacs.link; # Log files for Debugging access_log /var/log/nginx/cacs.link-access.log; error_log /var/log/nginx/cacs.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/cacs.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/cacs.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = cacs.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name cacs.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/call.panutan.id: server { server_name call.panutan.id; # Log files for Debugging access_log /var/log/nginx/call.panutan.id-access.log; error_log /var/log/nginx/call.panutan.id-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/call.panutan.id/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/call.panutan.id/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = call.panutan.id) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name call.panutan.id; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ceo.agrihub.farm: server { server_name ceo.agrihub.farm; # Log files for Debugging access_log /var/log/nginx/ceo.agrihub.farm-access.log; error_log /var/log/nginx/ceo.agrihub.farm-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ceo.agrihub.farm/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ceo.agrihub.farm/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = ceo.agrihub.farm) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ceo.agrihub.farm; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ceo.agrihub.org.in: server { server_name ceo.agrihub.org.in; # Log files for Debugging access_log /var/log/nginx/ceo.agrihub.org.in-access.log; error_log /var/log/nginx/ceo.agrihub.org.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ceo.agrihub.org.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ceo.agrihub.org.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = ceo.agrihub.org.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ceo.agrihub.org.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/cgpages.com: server { server_name cgpages.com; # Log files for Debugging access_log /var/log/nginx/cgpages.com-access.log; error_log /var/log/nginx/cgpages.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/cgpages.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/cgpages.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = cgpages.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name cgpages.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/click.dentalreach.today: server { server_name click.dentalreach.today; # Log files for Debugging access_log /var/log/nginx/click.dentalreach.today-access.log; error_log /var/log/nginx/click.dentalreach.today-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/click.dentalreach.today/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/click.dentalreach.today/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = click.dentalreach.today) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name click.dentalreach.today; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/click.galileatv.info: server { server_name click.galileatv.info; # Log files for Debugging access_log /var/log/nginx/click.galileatv.info-access.log; error_log /var/log/nginx/click.galileatv.info-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/click.galileatv.info/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/click.galileatv.info/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = click.galileatv.info) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name click.galileatv.info; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/click.galisoaps.com: server { server_name click.galisoaps.com; # Log files for Debugging access_log /var/log/nginx/click.galisoaps.com-access.log; error_log /var/log/nginx/click.galisoaps.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/click.galisoaps.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/click.galisoaps.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = click.galisoaps.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name click.galisoaps.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/click2call.b-ee.online: server { server_name click2call.b-ee.online; # Log files for Debugging access_log /var/log/nginx/click2call.b-ee.online-access.log; error_log /var/log/nginx/click2call.b-ee.online-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/click2call.b-ee.online/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/click2call.b-ee.online/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = click2call.b-ee.online) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name click2call.b-ee.online; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/clkfwd.com: server { server_name clkfwd.com; # Log files for Debugging access_log /var/log/nginx/clkfwd.com-access.log; error_log /var/log/nginx/clkfwd.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/clkfwd.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/clkfwd.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = clkfwd.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name clkfwd.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/contact.b-ee.online: server { server_name contact.b-ee.online; # Log files for Debugging access_log /var/log/nginx/contact.b-ee.online-access.log; error_log /var/log/nginx/contact.b-ee.online-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/contact.b-ee.online/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/contact.b-ee.online/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = contact.b-ee.online) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name contact.b-ee.online; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/dapur.tiktik.id: server { server_name dapur.tiktik.id; # Log files for Debugging access_log /var/log/nginx/dapur.tiktik.id-access.log; error_log /var/log/nginx/dapur.tiktik.id-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/dapur.tiktik.id/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/dapur.tiktik.id/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = dapur.tiktik.id) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name dapur.tiktik.id; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/darn.bio: server { server_name darn.bio; # Log files for Debugging access_log /var/log/nginx/darn.bio-access.log; error_log /var/log/nginx/darn.bio-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/darn.bio/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/darn.bio/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = darn.bio) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name darn.bio; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/default: ## # You should look at the following URL's in order to grasp a solid understanding # of Nginx configuration files in order to fully unleash the power of Nginx. # https://www.nginx.com/resources/wiki/start/ # https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ # https://wiki.debian.org/Nginx/DirectoryStructure # # In most cases, administrators will remove this file from sites-enabled/ and # leave it as reference inside of sites-available where it will continue to be # updated by the nginx packaging team. # # This file will automatically load configuration files provided by other # applications, such as Drupal or Wordpress. These applications will be made # available underneath a path with that package name, such as /drupal8. # # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples. ## # Default server configuration # server { listen 80 default_server; listen [::]:80 default_server; # SSL configuration # # listen 443 ssl default_server; # listen [::]:443 ssl default_server; # # Note: You should disable gzip for SSL traffic. # See: https://bugs.debian.org/773332 # # Read up on ssl_ciphers to ensure a secure configuration. # See: https://bugs.debian.org/765782 # # Self signed certs generated by the ssl-cert package # Don't use them in a production server! # # include snippets/snakeoil.conf; root /var/www/html; # Add index.php to the list if you are using PHP index index.html index.htm index.nginx-debian.html; server_name _; # 54.213.241.126 # return 301 http://www.$host$request_uri; # return 200 $host; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; } # pass PHP scripts to FastCGI server # #location ~ \.php$ { # include snippets/fastcgi-php.conf; # # # With php-fpm (or other unix sockets): # fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; # # With php-cgi (or other tcp sockets): # fastcgi_pass 127.0.0.1:9000; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # Virtual Host configuration for example.com # # You can move that to a different file under sites-available/ and symlink that # to sites-enabled/ to enable it. # #server { # listen 80; # listen [::]:80; # # server_name example.com; # # root /var/www/example.com; # index index.html; # # location / { # try_files $uri $uri/ =404; # } #} # configuration file /etc/nginx/sites-enabled/denti-pro.link: server { server_name denti-pro.link; # Log files for Debugging access_log /var/log/nginx/denti-pro.link-access.log; error_log /var/log/nginx/denti-pro.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/denti-pro.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/denti-pro.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = denti-pro.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name denti-pro.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/dh.talknative.co: server { server_name dh.talknative.co; # Log files for Debugging access_log /var/log/nginx/dh.talknative.co-access.log; error_log /var/log/nginx/dh.talknative.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/dh.talknative.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/dh.talknative.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = dh.talknative.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name dh.talknative.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/digital.smileinn.in: server { server_name digital.smileinn.in; # Log files for Debugging access_log /var/log/nginx/digital.smileinn.in-access.log; error_log /var/log/nginx/digital.smileinn.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/digital.smileinn.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/digital.smileinn.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = digital.smileinn.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name digital.smileinn.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/drlwillis.live: server { server_name drlwillis.live; # Log files for Debugging access_log /var/log/nginx/drlwillis.live-access.log; error_log /var/log/nginx/drlwillis.live-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/drlwillis.live/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/drlwillis.live/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = drlwillis.live) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name drlwillis.live; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/duval.link: server { server_name duval.link; # Log files for Debugging access_log /var/log/nginx/duval.link-access.log; error_log /var/log/nginx/duval.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/duval.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/duval.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = duval.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name duval.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ecom.lol: server { server_name ecom.lol; # Log files for Debugging access_log /var/log/nginx/ecom.lol-access.log; error_log /var/log/nginx/ecom.lol-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ecom.lol/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ecom.lol/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = ecom.lol) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ecom.lol; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/esy.bio: server { server_name esy.bio; # Log files for Debugging access_log /var/log/nginx/esy.bio-access.log; error_log /var/log/nginx/esy.bio-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/esy.bio/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/esy.bio/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = esy.bio) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name esy.bio; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/fuckyeah.taylorbanks.com: server { server_name fuckyeah.taylorbanks.com; # Log files for Debugging access_log /var/log/nginx/fuckyeah.taylorbanks.com-access.log; error_log /var/log/nginx/fuckyeah.taylorbanks.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/fuckyeah.taylorbanks.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/fuckyeah.taylorbanks.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = fuckyeah.taylorbanks.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name fuckyeah.taylorbanks.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/gabby.doubledags.com: server { server_name gabby.doubledags.com; # Log files for Debugging access_log /var/log/nginx/gabby.doubledags.com-access.log; error_log /var/log/nginx/gabby.doubledags.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/gabby.doubledags.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/gabby.doubledags.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = gabby.doubledags.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name gabby.doubledags.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/gainhealth.co: server { server_name gainhealth.co; # Log files for Debugging access_log /var/log/nginx/gainhealth.co-access.log; error_log /var/log/nginx/gainhealth.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/gainhealth.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/gainhealth.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = gainhealth.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name gainhealth.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/genius.yasafburshan.com: server { server_name genius.yasafburshan.com; # Log files for Debugging access_log /var/log/nginx/genius.yasafburshan.com-access.log; error_log /var/log/nginx/genius.yasafburshan.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/genius.yasafburshan.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/genius.yasafburshan.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = genius.yasafburshan.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name genius.yasafburshan.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/get.jamiecharles.com: server { server_name get.jamiecharles.com; # Log files for Debugging access_log /var/log/nginx/get.jamiecharles.com-access.log; error_log /var/log/nginx/get.jamiecharles.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/get.jamiecharles.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/get.jamiecharles.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = get.jamiecharles.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name get.jamiecharles.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/get.saas.help: server { server_name get.saas.help; # Log files for Debugging access_log /var/log/nginx/get.saas.help-access.log; error_log /var/log/nginx/get.saas.help-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/get.saas.help/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/get.saas.help/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = get.saas.help) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name get.saas.help; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.ashfaqvlogs.com: server { server_name go.ashfaqvlogs.com; # Log files for Debugging access_log /var/log/nginx/go.ashfaqvlogs.com-access.log; error_log /var/log/nginx/go.ashfaqvlogs.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.ashfaqvlogs.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.ashfaqvlogs.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.ashfaqvlogs.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.ashfaqvlogs.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.briff.in: server { server_name go.briff.in; # Log files for Debugging access_log /var/log/nginx/go.briff.in-access.log; error_log /var/log/nginx/go.briff.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.briff.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.briff.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.briff.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.briff.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.chimp.eco: server { server_name go.chimp.eco; # Log files for Debugging access_log /var/log/nginx/go.chimp.eco-access.log; error_log /var/log/nginx/go.chimp.eco-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.chimp.eco/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.chimp.eco/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.chimp.eco) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.chimp.eco; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.eee.com.my: server { server_name go.eee.com.my; # Log files for Debugging access_log /var/log/nginx/go.eee.com.my-access.log; error_log /var/log/nginx/go.eee.com.my-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.eee.com.my/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.eee.com.my/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.eee.com.my) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.eee.com.my; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.find.health: server { server_name go.find.health; # Log files for Debugging access_log /var/log/nginx/go.find.health-access.log; error_log /var/log/nginx/go.find.health-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.find.health/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.find.health/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.find.health) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.find.health; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.jasminepickles.in: server { listen 80; server_name go.jasminepickles.in; # Log files for Debugging access_log /var/log/nginx/go.jasminepickles.in-access.log; error_log /var/log/nginx/go.jasminepickles.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/go.kpau.com: server { server_name go.kpau.com; # Log files for Debugging access_log /var/log/nginx/go.kpau.com-access.log; error_log /var/log/nginx/go.kpau.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.kpau.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.kpau.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.kpau.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.kpau.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.m0n.xyz: server { server_name go.m0n.xyz; # Log files for Debugging access_log /var/log/nginx/go.m0n.xyz-access.log; error_log /var/log/nginx/go.m0n.xyz-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.m0n.xyz/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.m0n.xyz/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.m0n.xyz) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.m0n.xyz; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.mariasmenu.com: server { server_name go.mariasmenu.com; # Log files for Debugging access_log /var/log/nginx/go.mariasmenu.com-access.log; error_log /var/log/nginx/go.mariasmenu.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.mariasmenu.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.mariasmenu.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.mariasmenu.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.mariasmenu.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.priyankadixit.in: server { server_name go.priyankadixit.in; # Log files for Debugging access_log /var/log/nginx/go.priyankadixit.in-access.log; error_log /var/log/nginx/go.priyankadixit.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.priyankadixit.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.priyankadixit.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.priyankadixit.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.priyankadixit.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.ratuobral.id: server { server_name go.ratuobral.id; # Log files for Debugging access_log /var/log/nginx/go.ratuobral.id-access.log; error_log /var/log/nginx/go.ratuobral.id-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.ratuobral.id/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.ratuobral.id/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.ratuobral.id) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.ratuobral.id; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.rithvik.me: server { server_name go.rithvik.me; # Log files for Debugging access_log /var/log/nginx/go.rithvik.me-access.log; error_log /var/log/nginx/go.rithvik.me-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.rithvik.me/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.rithvik.me/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.rithvik.me) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.rithvik.me; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.teammakler.de: server { server_name go.teammakler.de; # Log files for Debugging access_log /var/log/nginx/go.teammakler.de-access.log; error_log /var/log/nginx/go.teammakler.de-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.teammakler.de/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.teammakler.de/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.teammakler.de) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.teammakler.de; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.xeye.de: server { server_name go.xeye.de; # Log files for Debugging access_log /var/log/nginx/go.xeye.de-access.log; error_log /var/log/nginx/go.xeye.de-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.xeye.de/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.xeye.de/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.xeye.de) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.xeye.de; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/go.zencapita.com: server { server_name go.zencapita.com; # Log files for Debugging access_log /var/log/nginx/go.zencapita.com-access.log; error_log /var/log/nginx/go.zencapita.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/go.zencapita.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/go.zencapita.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = go.zencapita.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name go.zencapita.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/harsh.talknative.co: server { server_name harsh.talknative.co; # Log files for Debugging access_log /var/log/nginx/harsh.talknative.co-access.log; error_log /var/log/nginx/harsh.talknative.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/harsh.talknative.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/harsh.talknative.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = harsh.talknative.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name harsh.talknative.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/hello.b-ee.online: server { server_name hello.b-ee.online; # Log files for Debugging access_log /var/log/nginx/hello.b-ee.online-access.log; error_log /var/log/nginx/hello.b-ee.online-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/hello.b-ee.online/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/hello.b-ee.online/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = hello.b-ee.online) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name hello.b-ee.online; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/hello.tokomebelsabar.com: server { server_name hello.tokomebelsabar.com; # Log files for Debugging access_log /var/log/nginx/hello.tokomebelsabar.com-access.log; error_log /var/log/nginx/hello.tokomebelsabar.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/hello.tokomebelsabar.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/hello.tokomebelsabar.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = hello.tokomebelsabar.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name hello.tokomebelsabar.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/help.linkjoy.io: # Prerequisites: ngx_http_ssl_module and ngx_http_proxy_module should be enabled # Step 1: set up normal server with HTTPS https://letsencrypt.org/ # Step 2: set up proxy settings as shown below # Step 3: set custom domain in Intercom Help Center settings # Step 4: make sure your DNS record is configured to IP of your Nginx server resolver 8.8.8.8; # use own DNS server if you have one server { server_name help.linkjoy.io; # replace this with your domain location / { # using "set" is important as IP addresses of Intercom servers # changes dynamically. "set" enables nginx to follow dynamic IPs set $intercom "https://custom.intercom.help:443"; proxy_set_header Host $host; proxy_pass $intercom; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/help.linkjoy.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/help.linkjoy.io/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = help.linkjoy.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name help.linkjoy.io; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/helpresear.ch: server { server_name helpresear.ch; # Log files for Debugging access_log /var/log/nginx/helpresear.ch-access.log; error_log /var/log/nginx/helpresear.ch-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/helpresear.ch/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/helpresear.ch/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = helpresear.ch) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name helpresear.ch; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/hi.reimagine.com.my: server { server_name hi.reimagine.com.my; # Log files for Debugging access_log /var/log/nginx/hi.reimagine.com.my-access.log; error_log /var/log/nginx/hi.reimagine.com.my-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/hi.reimagine.com.my/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/hi.reimagine.com.my/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = hi.reimagine.com.my) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name hi.reimagine.com.my; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/hicozzi.reimagine.com.my: server { server_name hicozzi.reimagine.com.my; # Log files for Debugging access_log /var/log/nginx/hicozzi.reimagine.com.my-access.log; error_log /var/log/nginx/hicozzi.reimagine.com.my-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/hicozzi.reimagine.com.my/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/hicozzi.reimagine.com.my/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = hicozzi.reimagine.com.my) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name hicozzi.reimagine.com.my; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/hihi.fyi: server { server_name hihi.fyi; # Log files for Debugging access_log /var/log/nginx/hihi.fyi-access.log; error_log /var/log/nginx/hihi.fyi-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/hihi.fyi/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/hihi.fyi/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = hihi.fyi) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name hihi.fyi; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/hostname.lnkj.in: server { server_name hostname.lnkj.in; # Log files for Debugging access_log /var/log/nginx/hostname.lnkj.in-access.log; error_log /var/log/nginx/hostname.lnkj.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/hostname.lnkj.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/hostname.lnkj.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = hostname.lnkj.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name hostname.lnkj.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/hs.talknative.co: server { server_name hs.talknative.co; # Log files for Debugging access_log /var/log/nginx/hs.talknative.co-access.log; error_log /var/log/nginx/hs.talknative.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/hs.talknative.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/hs.talknative.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = hs.talknative.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name hs.talknative.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/hydra.timelordclothing.com: server { server_name hydra.timelordclothing.com; # Log files for Debugging access_log /var/log/nginx/hydra.timelordclothing.com-access.log; error_log /var/log/nginx/hydra.timelordclothing.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/hydra.timelordclothing.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/hydra.timelordclothing.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = hydra.timelordclothing.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name hydra.timelordclothing.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/i.arushihanda.com: server { server_name i.arushihanda.com; # Log files for Debugging access_log /var/log/nginx/i.arushihanda.com-access.log; error_log /var/log/nginx/i.arushihanda.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/i.arushihanda.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/i.arushihanda.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = i.arushihanda.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name i.arushihanda.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/i.m0n.xyz: server { server_name i.m0n.xyz; # Log files for Debugging access_log /var/log/nginx/i.m0n.xyz-access.log; error_log /var/log/nginx/i.m0n.xyz-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/i.m0n.xyz/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/i.m0n.xyz/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = i.m0n.xyz) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name i.m0n.xyz; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/i.skinexperts.ae: server { server_name i.skinexperts.ae; # Log files for Debugging access_log /var/log/nginx/i.skinexperts.ae-access.log; error_log /var/log/nginx/i.skinexperts.ae-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/i.skinexperts.ae/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/i.skinexperts.ae/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = i.skinexperts.ae) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name i.skinexperts.ae; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/iam.monnelespiritu.com: server { server_name iam.monnelespiritu.com; # Log files for Debugging access_log /var/log/nginx/iam.monnelespiritu.com-access.log; error_log /var/log/nginx/iam.monnelespiritu.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/iam.monnelespiritu.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/iam.monnelespiritu.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = iam.monnelespiritu.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name iam.monnelespiritu.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ig.dotorgstrategy.com: server { server_name ig.dotorgstrategy.com; # Log files for Debugging access_log /var/log/nginx/ig.dotorgstrategy.com-access.log; error_log /var/log/nginx/ig.dotorgstrategy.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ig.dotorgstrategy.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ig.dotorgstrategy.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = ig.dotorgstrategy.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ig.dotorgstrategy.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ig.indieshortsmag.com: server { server_name ig.indieshortsmag.com; # Log files for Debugging access_log /var/log/nginx/ig.indieshortsmag.com-access.log; error_log /var/log/nginx/ig.indieshortsmag.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ig.indieshortsmag.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ig.indieshortsmag.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = ig.indieshortsmag.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ig.indieshortsmag.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ig.sidd.at: server { server_name ig.sidd.at; # Log files for Debugging access_log /var/log/nginx/ig.sidd.at-access.log; error_log /var/log/nginx/ig.sidd.at-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ig.sidd.at/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ig.sidd.at/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = ig.sidd.at) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ig.sidd.at; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/im.fauzan.xyz: server { server_name im.fauzan.xyz; # Log files for Debugging access_log /var/log/nginx/im.fauzan.xyz-access.log; error_log /var/log/nginx/im.fauzan.xyz-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/im.fauzan.xyz/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/im.fauzan.xyz/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = im.fauzan.xyz) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name im.fauzan.xyz; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/im.thesaumilshah.com: server { listen 80; server_name im.thesaumilshah.com; # Log files for Debugging access_log /var/log/nginx/im.thesaumilshah.com-access.log; error_log /var/log/nginx/im.thesaumilshah.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/insta.dynamiccelebrationlighting.com: server { server_name insta.dynamiccelebrationlighting.com; # Log files for Debugging access_log /var/log/nginx/insta.dynamiccelebrationlighting.com-access.log; error_log /var/log/nginx/insta.dynamiccelebrationlighting.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/insta.dynamiccelebrationlighting.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/insta.dynamiccelebrationlighting.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = insta.dynamiccelebrationlighting.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name insta.dynamiccelebrationlighting.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/insta.thekoreabuzz.com: server { server_name insta.thekoreabuzz.com; # Log files for Debugging access_log /var/log/nginx/insta.thekoreabuzz.com-access.log; error_log /var/log/nginx/insta.thekoreabuzz.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/insta.thekoreabuzz.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/insta.thekoreabuzz.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = insta.thekoreabuzz.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name insta.thekoreabuzz.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/instagram.erasmuslifelisboa.com: server { server_name instagram.erasmuslifelisboa.com; # Log files for Debugging access_log /var/log/nginx/instagram.erasmuslifelisboa.com-access.log; error_log /var/log/nginx/instagram.erasmuslifelisboa.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/instagram.erasmuslifelisboa.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/instagram.erasmuslifelisboa.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = instagram.erasmuslifelisboa.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name instagram.erasmuslifelisboa.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/instagram.soultreestore.com: server { server_name instagram.soultreestore.com; # Log files for Debugging access_log /var/log/nginx/instagram.soultreestore.com-access.log; error_log /var/log/nginx/instagram.soultreestore.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/instagram.soultreestore.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/instagram.soultreestore.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = instagram.soultreestore.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name instagram.soultreestore.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/join.connectingshia.com: server { server_name join.connectingshia.com; # Log files for Debugging access_log /var/log/nginx/join.connectingshia.com-access.log; error_log /var/log/nginx/join.connectingshia.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/join.connectingshia.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/join.connectingshia.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = join.connectingshia.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name join.connectingshia.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/kaveri.myprofile.contact: server { server_name kaveri.myprofile.contact; # Log files for Debugging access_log /var/log/nginx/kaveri.myprofile.contact-access.log; error_log /var/log/nginx/kaveri.myprofile.contact-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/kaveri.myprofile.contact/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/kaveri.myprofile.contact/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = kaveri.myprofile.contact) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name kaveri.myprofile.contact; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/klo.fyi: server { server_name klo.fyi; # Log files for Debugging access_log /var/log/nginx/klo.fyi-access.log; error_log /var/log/nginx/klo.fyi-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/klo.fyi/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/klo.fyi/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = klo.fyi) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name klo.fyi; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/knowme.one: server { server_name knowme.one; # Log files for Debugging access_log /var/log/nginx/knowme.one-access.log; error_log /var/log/nginx/knowme.one-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/knowme.one/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/knowme.one/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = knowme.one) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name knowme.one; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/l.gufo.it: server { server_name l.gufo.it; # Log files for Debugging access_log /var/log/nginx/l.gufo.it-access.log; error_log /var/log/nginx/l.gufo.it-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/l.gufo.it/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/l.gufo.it/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = l.gufo.it) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name l.gufo.it; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/lexi.linkoptimum.com: server { server_name lexi.linkoptimum.com; # Log files for Debugging access_log /var/log/nginx/lexi.linkoptimum.com-access.log; error_log /var/log/nginx/lexi.linkoptimum.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/lexi.linkoptimum.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/lexi.linkoptimum.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = lexi.linkoptimum.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name lexi.linkoptimum.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/liens.benjaminpierre.com: server { server_name liens.benjaminpierre.com; # Log files for Debugging access_log /var/log/nginx/liens.benjaminpierre.com-access.log; error_log /var/log/nginx/liens.benjaminpierre.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/liens.benjaminpierre.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/liens.benjaminpierre.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = liens.benjaminpierre.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name liens.benjaminpierre.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.artventure.xyz: server { server_name link.artventure.xyz; # Log files for Debugging access_log /var/log/nginx/link.artventure.xyz-access.log; error_log /var/log/nginx/link.artventure.xyz-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.artventure.xyz/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.artventure.xyz/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.artventure.xyz) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.artventure.xyz; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.arya.biz.id: server { server_name link.arya.biz.id; # Log files for Debugging access_log /var/log/nginx/link.arya.biz.id-access.log; error_log /var/log/nginx/link.arya.biz.id-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.arya.biz.id/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.arya.biz.id/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.arya.biz.id) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.arya.biz.id; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.audiomixing.online: server { server_name link.audiomixing.online; # Log files for Debugging access_log /var/log/nginx/link.audiomixing.online-access.log; error_log /var/log/nginx/link.audiomixing.online-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.audiomixing.online/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.audiomixing.online/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.audiomixing.online) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.audiomixing.online; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.bedrijfgids.be: server { server_name link.bedrijfgids.be; # Log files for Debugging access_log /var/log/nginx/link.bedrijfgids.be-access.log; error_log /var/log/nginx/link.bedrijfgids.be-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.bedrijfgids.be/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.bedrijfgids.be/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.bedrijfgids.be) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.bedrijfgids.be; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.bracestation.in: server { listen 80; server_name link.bracestation.in; # Log files for Debugging access_log /var/log/nginx/link.bracestation.in-access.log; error_log /var/log/nginx/link.bracestation.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/link.chowrastaindiancuisine.com: server { server_name link.chowrastaindiancuisine.com; # Log files for Debugging access_log /var/log/nginx/link.chowrastaindiancuisine.com-access.log; error_log /var/log/nginx/link.chowrastaindiancuisine.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.chowrastaindiancuisine.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.chowrastaindiancuisine.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.chowrastaindiancuisine.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.chowrastaindiancuisine.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.cleverstudio.co: server { server_name link.cleverstudio.co; # Log files for Debugging access_log /var/log/nginx/link.cleverstudio.co-access.log; error_log /var/log/nginx/link.cleverstudio.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.cleverstudio.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.cleverstudio.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.cleverstudio.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.cleverstudio.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.easyonair.my: server { server_name link.easyonair.my; # Log files for Debugging access_log /var/log/nginx/link.easyonair.my-access.log; error_log /var/log/nginx/link.easyonair.my-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.easyonair.my/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.easyonair.my/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.easyonair.my) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.easyonair.my; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.ecomhype.com: server { server_name link.ecomhype.com; # Log files for Debugging access_log /var/log/nginx/link.ecomhype.com-access.log; error_log /var/log/nginx/link.ecomhype.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.ecomhype.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.ecomhype.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.ecomhype.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.ecomhype.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.egalitet.se: server { server_name link.egalitet.se; # Log files for Debugging access_log /var/log/nginx/link.egalitet.se-access.log; error_log /var/log/nginx/link.egalitet.se-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.egalitet.se/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.egalitet.se/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.egalitet.se) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.egalitet.se; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.ehnrin.com: server { server_name link.ehnrin.com; # Log files for Debugging access_log /var/log/nginx/link.ehnrin.com-access.log; error_log /var/log/nginx/link.ehnrin.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.ehnrin.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.ehnrin.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.ehnrin.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.ehnrin.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.goodthingsindeed.com: server { server_name link.goodthingsindeed.com; # Log files for Debugging access_log /var/log/nginx/link.goodthingsindeed.com-access.log; error_log /var/log/nginx/link.goodthingsindeed.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.goodthingsindeed.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.goodthingsindeed.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.goodthingsindeed.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.goodthingsindeed.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.h1maths.ie: server { server_name link.h1maths.ie; # Log files for Debugging access_log /var/log/nginx/link.h1maths.ie-access.log; error_log /var/log/nginx/link.h1maths.ie-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.h1maths.ie/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.h1maths.ie/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.h1maths.ie) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.h1maths.ie; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.justinffranco.com: server { server_name link.justinffranco.com; # Log files for Debugging access_log /var/log/nginx/link.justinffranco.com-access.log; error_log /var/log/nginx/link.justinffranco.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.justinffranco.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.justinffranco.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.justinffranco.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.justinffranco.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.kaui.me: server { server_name link.kaui.me; # Log files for Debugging access_log /var/log/nginx/link.kaui.me-access.log; error_log /var/log/nginx/link.kaui.me-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.kaui.me/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.kaui.me/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.kaui.me) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.kaui.me; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.klo.fyi: server { server_name link.klo.fyi; # Log files for Debugging access_log /var/log/nginx/link.klo.fyi-access.log; error_log /var/log/nginx/link.klo.fyi-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.klo.fyi/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.klo.fyi/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.klo.fyi) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.klo.fyi; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.krdfy.com: server { server_name link.krdfy.com; # Log files for Debugging access_log /var/log/nginx/link.krdfy.com-access.log; error_log /var/log/nginx/link.krdfy.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.krdfy.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.krdfy.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.krdfy.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.krdfy.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.nxtmtn.com: server { listen 80; server_name link.nxtmtn.com; # Log files for Debugging access_log /var/log/nginx/link.nxtmtn.com-access.log; error_log /var/log/nginx/link.nxtmtn.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/link.preneurstory.com: server { server_name link.preneurstory.com; # Log files for Debugging access_log /var/log/nginx/link.preneurstory.com-access.log; error_log /var/log/nginx/link.preneurstory.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.preneurstory.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.preneurstory.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.preneurstory.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.preneurstory.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.rameshghimire.com: server { server_name link.rameshghimire.com; # Log files for Debugging access_log /var/log/nginx/link.rameshghimire.com-access.log; error_log /var/log/nginx/link.rameshghimire.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.rameshghimire.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.rameshghimire.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.rameshghimire.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.rameshghimire.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/link.rockgen.ca: server { listen 80; server_name link.rockgen.ca; # Log files for Debugging access_log /var/log/nginx/link.rockgen.ca-access.log; error_log /var/log/nginx/link.rockgen.ca-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/link.soultreestore.com: server { server_name link.soultreestore.com; # Log files for Debugging access_log /var/log/nginx/link.soultreestore.com-access.log; error_log /var/log/nginx/link.soultreestore.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/link.soultreestore.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/link.soultreestore.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = link.soultreestore.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name link.soultreestore.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/linkiw.me: server { server_name linkiw.me; # Log files for Debugging access_log /var/log/nginx/linkiw.me-access.log; error_log /var/log/nginx/linkiw.me-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/linkiw.me/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/linkiw.me/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = linkiw.me) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name linkiw.me; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/linkjoy.clientjoy.io: server { server_name linkjoy.clientjoy.io; # Log files for Debugging access_log /var/log/nginx/linkjoy.clientjoy.io-access.log; error_log /var/log/nginx/linkjoy.clientjoy.io-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/linkjoy.clientjoy.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/linkjoy.clientjoy.io/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = linkjoy.clientjoy.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name linkjoy.clientjoy.io; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/linkjoy.cluevest.com: server { server_name linkjoy.cluevest.com; # Log files for Debugging access_log /var/log/nginx/linkjoy.cluevest.com-access.log; error_log /var/log/nginx/linkjoy.cluevest.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/linkjoy.cluevest.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/linkjoy.cluevest.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = linkjoy.cluevest.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name linkjoy.cluevest.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/linkjoy.gridle.io: server { server_name linkjoy.gridle.io; # Log files for Debugging access_log /var/log/nginx/linkjoy.gridle.io-access.log; error_log /var/log/nginx/linkjoy.gridle.io-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/linkjoy.gridle.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/linkjoy.gridle.io/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = linkjoy.gridle.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name linkjoy.gridle.io; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/linkjoy.helpresear.ch: server { server_name linkjoy.helpresear.ch; # Log files for Debugging access_log /var/log/nginx/linkjoy.helpresear.ch-access.log; error_log /var/log/nginx/linkjoy.helpresear.ch-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/linkjoy.helpresear.ch/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/linkjoy.helpresear.ch/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = linkjoy.helpresear.ch) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name linkjoy.helpresear.ch; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/linkjoy.wplifestyle.com: server { server_name linkjoy.wplifestyle.com; # Log files for Debugging access_log /var/log/nginx/linkjoy.wplifestyle.com-access.log; error_log /var/log/nginx/linkjoy.wplifestyle.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/linkjoy.wplifestyle.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/linkjoy.wplifestyle.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = linkjoy.wplifestyle.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name linkjoy.wplifestyle.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/links.brandcodec.com: server { listen 80; server_name links.brandcodec.com; # Log files for Debugging access_log /var/log/nginx/links.brandcodec.com-access.log; error_log /var/log/nginx/links.brandcodec.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/links.buildgroove.com: server { server_name links.buildgroove.com; # Log files for Debugging access_log /var/log/nginx/links.buildgroove.com-access.log; error_log /var/log/nginx/links.buildgroove.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/links.buildgroove.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/links.buildgroove.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = links.buildgroove.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name links.buildgroove.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/links.exoticbodyessentials.com: server { server_name links.exoticbodyessentials.com; # Log files for Debugging access_log /var/log/nginx/links.exoticbodyessentials.com-access.log; error_log /var/log/nginx/links.exoticbodyessentials.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/links.exoticbodyessentials.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/links.exoticbodyessentials.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = links.exoticbodyessentials.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name links.exoticbodyessentials.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/links.motrebkadeh.com: server { listen 80; server_name links.motrebkadeh.com; # Log files for Debugging access_log /var/log/nginx/links.motrebkadeh.com-access.log; error_log /var/log/nginx/links.motrebkadeh.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/links.sharedhomies.com: server { server_name links.sharedhomies.com; # Log files for Debugging access_log /var/log/nginx/links.sharedhomies.com-access.log; error_log /var/log/nginx/links.sharedhomies.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/links.sharedhomies.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/links.sharedhomies.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = links.sharedhomies.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name links.sharedhomies.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/links.shashwatbhatt.com: server { listen 80; server_name links.shashwatbhatt.com; # Log files for Debugging access_log /var/log/nginx/links.shashwatbhatt.com-access.log; error_log /var/log/nginx/links.shashwatbhatt.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/links.simplysupercharged.com: server { server_name links.simplysupercharged.com; # Log files for Debugging access_log /var/log/nginx/links.simplysupercharged.com-access.log; error_log /var/log/nginx/links.simplysupercharged.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/links.simplysupercharged.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/links.simplysupercharged.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = links.simplysupercharged.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name links.simplysupercharged.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/links.soldbygracel.com: server { server_name links.soldbygracel.com; # Log files for Debugging access_log /var/log/nginx/links.soldbygracel.com-access.log; error_log /var/log/nginx/links.soldbygracel.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/links.soldbygracel.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/links.soldbygracel.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = links.soldbygracel.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name links.soldbygracel.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/links.terencetan.com: server { server_name links.terencetan.com; # Log files for Debugging access_log /var/log/nginx/links.terencetan.com-access.log; error_log /var/log/nginx/links.terencetan.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/links.terencetan.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/links.terencetan.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = links.terencetan.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name links.terencetan.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/links.theboris.com: server { server_name links.theboris.com; # Log files for Debugging access_log /var/log/nginx/links.theboris.com-access.log; error_log /var/log/nginx/links.theboris.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/links.theboris.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/links.theboris.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = links.theboris.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name links.theboris.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/lk.twilighttint.link: server { server_name lk.twilighttint.link; # Log files for Debugging access_log /var/log/nginx/lk.twilighttint.link-access.log; error_log /var/log/nginx/lk.twilighttint.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/lk.twilighttint.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/lk.twilighttint.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = lk.twilighttint.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name lk.twilighttint.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/lnk.dznblz.com: server { server_name lnk.dznblz.com; # Log files for Debugging access_log /var/log/nginx/lnk.dznblz.com-access.log; error_log /var/log/nginx/lnk.dznblz.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/lnk.dznblz.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/lnk.dznblz.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = lnk.dznblz.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name lnk.dznblz.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/lnkj.in: server { #listen [::]:80 ipv6only=on; # Log files for Debugging access_log /var/log/nginx/linkjoy-access.log; error_log /var/log/nginx/linkjoy-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; # Your Domain Name server_name lnkj.in www.lnkj.in; #add_header Cache-Control "public"; #expires $expires; location / { if ($limit_bots = 1) { return 403; } limit_req zone=one burst=5; try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; limit_req zone=one burst=5; } include /etc/nginx/configs/performance/cache.conf; #include /etc/nginx/configs/security/access.conf; listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/lnkj.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/lnkj.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = lnkj.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name lnkj.in www.lnkj.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/m.a99.in: server { server_name m.a99.in; # Log files for Debugging access_log /var/log/nginx/m.a99.in-access.log; error_log /var/log/nginx/m.a99.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/m.a99.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/m.a99.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = m.a99.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name m.a99.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/m.omw.one: server { listen 80; server_name m.omw.one; # Log files for Debugging access_log /var/log/nginx/m.omw.one-access.log; error_log /var/log/nginx/m.omw.one-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/me.htrk.link: server { server_name me.htrk.link; # Log files for Debugging access_log /var/log/nginx/me.htrk.link-access.log; error_log /var/log/nginx/me.htrk.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/me.htrk.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/me.htrk.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = me.htrk.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name me.htrk.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/me.marketr.cc: server { server_name me.marketr.cc; # Log files for Debugging access_log /var/log/nginx/me.marketr.cc-access.log; error_log /var/log/nginx/me.marketr.cc-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/me.marketr.cc/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/me.marketr.cc/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = me.marketr.cc) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name me.marketr.cc; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/media.marketshop.pl: server { server_name media.marketshop.pl; # Log files for Debugging access_log /var/log/nginx/media.marketshop.pl-access.log; error_log /var/log/nginx/media.marketshop.pl-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/media.marketshop.pl/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/media.marketshop.pl/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = media.marketshop.pl) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name media.marketshop.pl; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/mucormycosis.ehnrin.com: server { server_name mucormycosis.ehnrin.com; # Log files for Debugging access_log /var/log/nginx/mucormycosis.ehnrin.com-access.log; error_log /var/log/nginx/mucormycosis.ehnrin.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/mucormycosis.ehnrin.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/mucormycosis.ehnrin.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = mucormycosis.ehnrin.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name mucormycosis.ehnrin.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/my.bnbth.co: server { server_name my.bnbth.co; # Log files for Debugging access_log /var/log/nginx/my.bnbth.co-access.log; error_log /var/log/nginx/my.bnbth.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/my.bnbth.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/my.bnbth.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = my.bnbth.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name my.bnbth.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/my.globalpragathi.com: server { server_name my.globalpragathi.com; # Log files for Debugging access_log /var/log/nginx/my.globalpragathi.com-access.log; error_log /var/log/nginx/my.globalpragathi.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/my.globalpragathi.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/my.globalpragathi.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = my.globalpragathi.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name my.globalpragathi.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/my.linkbio.fyi: server { server_name my.linkbio.fyi; # Log files for Debugging access_log /var/log/nginx/my.linkbio.fyi-access.log; error_log /var/log/nginx/my.linkbio.fyi-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/my.linkbio.fyi/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/my.linkbio.fyi/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = my.linkbio.fyi) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name my.linkbio.fyi; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/my.xs24.com: server { server_name my.xs24.com; # Log files for Debugging access_log /var/log/nginx/my.xs24.com-access.log; error_log /var/log/nginx/my.xs24.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/my.xs24.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/my.xs24.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = my.xs24.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name my.xs24.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/nmly.org: server { server_name nmly.org; # Log files for Debugging access_log /var/log/nginx/nmly.org-access.log; error_log /var/log/nginx/nmly.org-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/nmly.org/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/nmly.org/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = nmly.org) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name nmly.org; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/notionjoy.io: server { server_name notionjoy.io; # Log files for Debugging access_log /var/log/nginx/notionjoy.io-access.log; error_log /var/log/nginx/notionjoy.io-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/notionjoy.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/notionjoy.io/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = notionjoy.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name notionjoy.io; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ntzn.my: server { listen 80; server_name ntzn.my; # Log files for Debugging access_log /var/log/nginx/ntzn.my-access.log; error_log /var/log/nginx/ntzn.my-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ /.well-known { allow all; root /var/www/html; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/ohsem.la: server { server_name ohsem.la; # Log files for Debugging access_log /var/log/nginx/ohsem.la-access.log; error_log /var/log/nginx/ohsem.la-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ohsem.la/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ohsem.la/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = ohsem.la) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ohsem.la; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/oussama.social: server { server_name oussama.social; # Log files for Debugging access_log /var/log/nginx/oussama.social-access.log; error_log /var/log/nginx/oussama.social-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/oussama.social/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/oussama.social/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = oussama.social) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name oussama.social; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/pa.mgpty.net: server { server_name pa.mgpty.net; # Log files for Debugging access_log /var/log/nginx/pa.mgpty.net-access.log; error_log /var/log/nginx/pa.mgpty.net-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/pa.mgpty.net/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/pa.mgpty.net/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = pa.mgpty.net) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name pa.mgpty.net; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/page.multimediatique.fr: server { server_name page.multimediatique.fr; # Log files for Debugging access_log /var/log/nginx/page.multimediatique.fr-access.log; error_log /var/log/nginx/page.multimediatique.fr-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/page.multimediatique.fr/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/page.multimediatique.fr/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = page.multimediatique.fr) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name page.multimediatique.fr; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/patels.contact: server { server_name patels.contact; # Log files for Debugging access_log /var/log/nginx/patels.contact-access.log; error_log /var/log/nginx/patels.contact-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/patels.contact/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/patels.contact/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = patels.contact) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name patels.contact; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/pebbles-white.nanoquick.pl: server { server_name pebbles-white.nanoquick.pl; # Log files for Debugging access_log /var/log/nginx/pebbles-white.nanoquick.pl-access.log; error_log /var/log/nginx/pebbles-white.nanoquick.pl-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/pebbles-white.nanoquick.pl/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/pebbles-white.nanoquick.pl/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = pebbles-white.nanoquick.pl) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name pebbles-white.nanoquick.pl; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/please.clicktodelivery.co: server { server_name please.clicktodelivery.co; # Log files for Debugging access_log /var/log/nginx/please.clicktodelivery.co-access.log; error_log /var/log/nginx/please.clicktodelivery.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/please.clicktodelivery.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/please.clicktodelivery.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = please.clicktodelivery.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name please.clicktodelivery.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/prema.panutan.id: server { server_name prema.panutan.id; # Log files for Debugging access_log /var/log/nginx/prema.panutan.id-access.log; error_log /var/log/nginx/prema.panutan.id-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/prema.panutan.id/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/prema.panutan.id/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = prema.panutan.id) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name prema.panutan.id; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/prism.sobright.me: server { server_name prism.sobright.me; # Log files for Debugging access_log /var/log/nginx/prism.sobright.me-access.log; error_log /var/log/nginx/prism.sobright.me-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/prism.sobright.me/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/prism.sobright.me/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = prism.sobright.me) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name prism.sobright.me; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/putih.page: server { server_name putih.page; # Log files for Debugging access_log /var/log/nginx/putih.page-access.log; error_log /var/log/nginx/putih.page-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/putih.page/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/putih.page/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = putih.page) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name putih.page; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/qubitlife.top: server { server_name qubitlife.top; # Log files for Debugging access_log /var/log/nginx/qubitlife.top-access.log; error_log /var/log/nginx/qubitlife.top-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/qubitlife.top/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/qubitlife.top/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = qubitlife.top) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name qubitlife.top; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/rachel.doubledags.com: server { server_name rachel.doubledags.com; # Log files for Debugging access_log /var/log/nginx/rachel.doubledags.com-access.log; error_log /var/log/nginx/rachel.doubledags.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/rachel.doubledags.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/rachel.doubledags.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = rachel.doubledags.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name rachel.doubledags.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/rapto.rs: server { server_name rapto.rs; # Log files for Debugging access_log /var/log/nginx/rapto.rs-access.log; error_log /var/log/nginx/rapto.rs-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/rapto.rs/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/rapto.rs/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = rapto.rs) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name rapto.rs; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/re.join.re: server { server_name re.join.re; # Log files for Debugging access_log /var/log/nginx/re.join.re-access.log; error_log /var/log/nginx/re.join.re-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/re.join.re/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/re.join.re/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = re.join.re) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name re.join.re; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/redna.link: server { server_name redna.link; # Log files for Debugging access_log /var/log/nginx/redna.link-access.log; error_log /var/log/nginx/redna.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/redna.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/redna.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = redna.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name redna.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/retarget.marketinggrowth.co: server { listen 80; server_name retarget.marketinggrowth.co; # Log files for Debugging access_log /var/log/nginx/retarget.marketinggrowth.co-access.log; error_log /var/log/nginx/retarget.marketinggrowth.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/saas.help: server { server_name saas.help; # Log files for Debugging access_log /var/log/nginx/saas.help-access.log; error_log /var/log/nginx/saas.help-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/saas.help/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/saas.help/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = saas.help) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name saas.help; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/saratoga.klikmyl.ink: server { server_name saratoga.klikmyl.ink; # Log files for Debugging access_log /var/log/nginx/saratoga.klikmyl.ink-access.log; error_log /var/log/nginx/saratoga.klikmyl.ink-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/saratoga.klikmyl.ink/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/saratoga.klikmyl.ink/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = saratoga.klikmyl.ink) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name saratoga.klikmyl.ink; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/selassie.laconnexional.ca: server { server_name selassie.laconnexional.ca; # Log files for Debugging access_log /var/log/nginx/selassie.laconnexional.ca-access.log; error_log /var/log/nginx/selassie.laconnexional.ca-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/selassie.laconnexional.ca/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/selassie.laconnexional.ca/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = selassie.laconnexional.ca) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name selassie.laconnexional.ca; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/service.cybernetik.com: server { server_name service.cybernetik.com; # Log files for Debugging access_log /var/log/nginx/service.cybernetik.com-access.log; error_log /var/log/nginx/service.cybernetik.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/service.cybernetik.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/service.cybernetik.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = service.cybernetik.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name service.cybernetik.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/sf.socialfool.net: server { server_name sf.socialfool.net; # Log files for Debugging access_log /var/log/nginx/sf.socialfool.net-access.log; error_log /var/log/nginx/sf.socialfool.net-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/sf.socialfool.net/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/sf.socialfool.net/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = sf.socialfool.net) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name sf.socialfool.net; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/share.b-ee.online: server { server_name share.b-ee.online; # Log files for Debugging access_log /var/log/nginx/share.b-ee.online-access.log; error_log /var/log/nginx/share.b-ee.online-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/share.b-ee.online/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/share.b-ee.online/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = share.b-ee.online) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name share.b-ee.online; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/share.hardikmunjal.com: server { server_name share.hardikmunjal.com; # Log files for Debugging access_log /var/log/nginx/share.hardikmunjal.com-access.log; error_log /var/log/nginx/share.hardikmunjal.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/share.hardikmunjal.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/share.hardikmunjal.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = share.hardikmunjal.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name share.hardikmunjal.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/shop.butikrimba.com: server { server_name shop.butikrimba.com; # Log files for Debugging access_log /var/log/nginx/shop.butikrimba.com-access.log; error_log /var/log/nginx/shop.butikrimba.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/shop.butikrimba.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/shop.butikrimba.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = shop.butikrimba.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name shop.butikrimba.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/shop.soultreestore.com: server { server_name shop.soultreestore.com; # Log files for Debugging access_log /var/log/nginx/shop.soultreestore.com-access.log; error_log /var/log/nginx/shop.soultreestore.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/shop.soultreestore.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/shop.soultreestore.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = shop.soultreestore.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name shop.soultreestore.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/shop.wondermompreneur.com: server { server_name shop.wondermompreneur.com; # Log files for Debugging access_log /var/log/nginx/shop.wondermompreneur.com-access.log; error_log /var/log/nginx/shop.wondermompreneur.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/shop.wondermompreneur.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/shop.wondermompreneur.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = shop.wondermompreneur.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name shop.wondermompreneur.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/siigue.me: server { server_name siigue.me; # Log files for Debugging access_log /var/log/nginx/siigue.me-access.log; error_log /var/log/nginx/siigue.me-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/siigue.me/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/siigue.me/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = siigue.me) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name siigue.me; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/smo.sbs: server { server_name smo.sbs; # Log files for Debugging access_log /var/log/nginx/smo.sbs-access.log; error_log /var/log/nginx/smo.sbs-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/smo.sbs/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/smo.sbs/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = smo.sbs) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name smo.sbs; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.anvinawalgaria.com: server { listen 80; server_name social.anvinawalgaria.com; # Log files for Debugging access_log /var/log/nginx/social.anvinawalgaria.com-access.log; error_log /var/log/nginx/social.anvinawalgaria.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/social.chowrastaindiancuisine.com: server { server_name social.chowrastaindiancuisine.com; # Log files for Debugging access_log /var/log/nginx/social.chowrastaindiancuisine.com-access.log; error_log /var/log/nginx/social.chowrastaindiancuisine.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.chowrastaindiancuisine.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.chowrastaindiancuisine.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.chowrastaindiancuisine.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.chowrastaindiancuisine.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.dodo.hu: server { server_name social.dodo.hu; # Log files for Debugging access_log /var/log/nginx/social.dodo.hu-access.log; error_log /var/log/nginx/social.dodo.hu-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.dodo.hu/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.dodo.hu/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.dodo.hu) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.dodo.hu; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.globalvisualmarketing.com: server { listen 80; server_name social.globalvisualmarketing.com; # Log files for Debugging access_log /var/log/nginx/social.globalvisualmarketing.com-access.log; error_log /var/log/nginx/social.globalvisualmarketing.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/social.marketshop.pl: server { server_name social.marketshop.pl; # Log files for Debugging access_log /var/log/nginx/social.marketshop.pl-access.log; error_log /var/log/nginx/social.marketshop.pl-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.marketshop.pl/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.marketshop.pl/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.marketshop.pl) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.marketshop.pl; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.newrainsalon.com: server { server_name social.newrainsalon.com; # Log files for Debugging access_log /var/log/nginx/social.newrainsalon.com-access.log; error_log /var/log/nginx/social.newrainsalon.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.newrainsalon.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.newrainsalon.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.newrainsalon.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.newrainsalon.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.olivecloud.in: server { listen 80; server_name social.olivecloud.in; # Log files for Debugging access_log /var/log/nginx/social.olivecloud.in-access.log; error_log /var/log/nginx/social.olivecloud.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/social.padmamohan.com: server { server_name social.padmamohan.com; # Log files for Debugging access_log /var/log/nginx/social.padmamohan.com-access.log; error_log /var/log/nginx/social.padmamohan.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.padmamohan.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.padmamohan.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.padmamohan.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.padmamohan.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.panbodziak.pl: server { server_name social.panbodziak.pl; # Log files for Debugging access_log /var/log/nginx/social.panbodziak.pl-access.log; error_log /var/log/nginx/social.panbodziak.pl-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.panbodziak.pl/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.panbodziak.pl/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.panbodziak.pl) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.panbodziak.pl; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.rameshghimire.com: server { server_name social.rameshghimire.com; # Log files for Debugging access_log /var/log/nginx/social.rameshghimire.com-access.log; error_log /var/log/nginx/social.rameshghimire.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.rameshghimire.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.rameshghimire.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.rameshghimire.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.rameshghimire.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.sharadnawalgaria.com: server { listen 80; server_name social.sharadnawalgaria.com; # Log files for Debugging access_log /var/log/nginx/social.sharadnawalgaria.com-access.log; error_log /var/log/nginx/social.sharadnawalgaria.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/social.sidd.at: server { server_name social.sidd.at; # Log files for Debugging access_log /var/log/nginx/social.sidd.at-access.log; error_log /var/log/nginx/social.sidd.at-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.sidd.at/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.sidd.at/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.sidd.at) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.sidd.at; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.soultreestore.com: server { server_name social.soultreestore.com; # Log files for Debugging access_log /var/log/nginx/social.soultreestore.com-access.log; error_log /var/log/nginx/social.soultreestore.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.soultreestore.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.soultreestore.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.soultreestore.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.soultreestore.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.techguys.io: server { server_name social.techguys.io; # Log files for Debugging access_log /var/log/nginx/social.techguys.io-access.log; error_log /var/log/nginx/social.techguys.io-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.techguys.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.techguys.io/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.techguys.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.techguys.io; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.theadvancedental.com: server { server_name social.theadvancedental.com; # Log files for Debugging access_log /var/log/nginx/social.theadvancedental.com-access.log; error_log /var/log/nginx/social.theadvancedental.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.theadvancedental.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.theadvancedental.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.theadvancedental.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.theadvancedental.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.theaffiliatecash.com: server { server_name social.theaffiliatecash.com; # Log files for Debugging access_log /var/log/nginx/social.theaffiliatecash.com-access.log; error_log /var/log/nginx/social.theaffiliatecash.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.theaffiliatecash.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.theaffiliatecash.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.theaffiliatecash.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.theaffiliatecash.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/social.yashshah.in: server { server_name social.yashshah.in; # Log files for Debugging access_log /var/log/nginx/social.yashshah.in-access.log; error_log /var/log/nginx/social.yashshah.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/social.yashshah.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/social.yashshah.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = social.yashshah.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name social.yashshah.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/socials.cfonn.ca: server { server_name socials.cfonn.ca; # Log files for Debugging access_log /var/log/nginx/socials.cfonn.ca-access.log; error_log /var/log/nginx/socials.cfonn.ca-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/socials.cfonn.ca/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/socials.cfonn.ca/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = socials.cfonn.ca) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name socials.cfonn.ca; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/socials.underdogdentist.com: server { server_name socials.underdogdentist.com; # Log files for Debugging access_log /var/log/nginx/socials.underdogdentist.com-access.log; error_log /var/log/nginx/socials.underdogdentist.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/socials.underdogdentist.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/socials.underdogdentist.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = socials.underdogdentist.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name socials.underdogdentist.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/sos.rockgen.ca: server { listen 80; server_name sos.rockgen.ca; # Log files for Debugging access_log /var/log/nginx/sos.rockgen.ca-access.log; error_log /var/log/nginx/sos.rockgen.ca-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/soultreestore.com: server { server_name soultreestore.com; # Log files for Debugging access_log /var/log/nginx/soultreestore.com-access.log; error_log /var/log/nginx/soultreestore.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/soultreestore.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/soultreestore.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = soultreestore.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name soultreestore.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ss.talknative.co: server { server_name ss.talknative.co; # Log files for Debugging access_log /var/log/nginx/ss.talknative.co-access.log; error_log /var/log/nginx/ss.talknative.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/ss.talknative.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/ss.talknative.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = ss.talknative.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name ss.talknative.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/ssltesting.notionjoy.io: server { listen 80; server_name ssltesting.notionjoy.io; # Log files for Debugging access_log /var/log/nginx/ssltesting.notionjoy.io-access.log; error_log /var/log/nginx/ssltesting.notionjoy.io-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/stephen.sharedhomies.com: server { server_name stephen.sharedhomies.com; # Log files for Debugging access_log /var/log/nginx/stephen.sharedhomies.com-access.log; error_log /var/log/nginx/stephen.sharedhomies.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/stephen.sharedhomies.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/stephen.sharedhomies.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = stephen.sharedhomies.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name stephen.sharedhomies.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/suited-tutor.com: server { server_name suited-tutor.com; # Log files for Debugging access_log /var/log/nginx/suited-tutor.com-access.log; error_log /var/log/nginx/suited-tutor.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/suited-tutor.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/suited-tutor.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = suited-tutor.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name suited-tutor.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/sunny.ourpage.site: server { listen 80; server_name sunny.ourpage.site; # Log files for Debugging access_log /var/log/nginx/sunny.ourpage.site-access.log; error_log /var/log/nginx/sunny.ourpage.site-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/taalib.page: server { server_name taalib.page; # Log files for Debugging access_log /var/log/nginx/taalib.page-access.log; error_log /var/log/nginx/taalib.page-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/taalib.page/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/taalib.page/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = taalib.page) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name taalib.page; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/tm.xeye.de: server { server_name tm.xeye.de; # Log files for Debugging access_log /var/log/nginx/tm.xeye.de-access.log; error_log /var/log/nginx/tm.xeye.de-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/tm.xeye.de/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/tm.xeye.de/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = tm.xeye.de) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name tm.xeye.de; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/urbanarts.link: server { server_name urbanarts.link; # Log files for Debugging access_log /var/log/nginx/urbanarts.link-access.log; error_log /var/log/nginx/urbanarts.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/urbanarts.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/urbanarts.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = urbanarts.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name urbanarts.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/url.geekwork.in: server { server_name url.geekwork.in; # Log files for Debugging access_log /var/log/nginx/url.geekwork.in-access.log; error_log /var/log/nginx/url.geekwork.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/url.geekwork.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/url.geekwork.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = url.geekwork.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name url.geekwork.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/url.incbuss.id: server { server_name url.incbuss.id; # Log files for Debugging access_log /var/log/nginx/url.incbuss.id-access.log; error_log /var/log/nginx/url.incbuss.id-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/url.incbuss.id/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/url.incbuss.id/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = url.incbuss.id) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name url.incbuss.id; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/url.makeitfun.in: server { server_name url.makeitfun.in; # Log files for Debugging access_log /var/log/nginx/url.makeitfun.in-access.log; error_log /var/log/nginx/url.makeitfun.in-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/url.makeitfun.in/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/url.makeitfun.in/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = url.makeitfun.in) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name url.makeitfun.in; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/visit.odoughcakes.com: server { server_name visit.odoughcakes.com; # Log files for Debugging access_log /var/log/nginx/visit.odoughcakes.com-access.log; error_log /var/log/nginx/visit.odoughcakes.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/visit.odoughcakes.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/visit.odoughcakes.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = visit.odoughcakes.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name visit.odoughcakes.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/vs.talknative.co: server { server_name vs.talknative.co; # Log files for Debugging access_log /var/log/nginx/vs.talknative.co-access.log; error_log /var/log/nginx/vs.talknative.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/vs.talknative.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/vs.talknative.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = vs.talknative.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name vs.talknative.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/welcome.gonzalezj.com: server { server_name welcome.gonzalezj.com; # Log files for Debugging access_log /var/log/nginx/welcome.gonzalezj.com-access.log; error_log /var/log/nginx/welcome.gonzalezj.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/welcome.gonzalezj.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/welcome.gonzalezj.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = welcome.gonzalezj.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name welcome.gonzalezj.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/wisechatsbizcards.com: server { server_name wisechatsbizcards.com; # Log files for Debugging access_log /var/log/nginx/wisechatsbizcards.com-access.log; error_log /var/log/nginx/wisechatsbizcards.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/wisechatsbizcards.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/wisechatsbizcards.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = wisechatsbizcards.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name wisechatsbizcards.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.charlie.eco: server { server_name www.charlie.eco; # Log files for Debugging access_log /var/log/nginx/www.charlie.eco-access.log; error_log /var/log/nginx/www.charlie.eco-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.charlie.eco/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.charlie.eco/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.charlie.eco) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.charlie.eco; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.d2c.tips: server { server_name www.d2c.tips; # Log files for Debugging access_log /var/log/nginx/www.d2c.tips-access.log; error_log /var/log/nginx/www.d2c.tips-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.d2c.tips/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.d2c.tips/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.d2c.tips) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.d2c.tips; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.getsal.es: server { server_name www.getsal.es; # Log files for Debugging access_log /var/log/nginx/www.getsal.es-access.log; error_log /var/log/nginx/www.getsal.es-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.getsal.es/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.getsal.es/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.getsal.es) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.getsal.es; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.helpresear.ch: server { server_name www.helpresear.ch; # Log files for Debugging access_log /var/log/nginx/www.helpresear.ch-access.log; error_log /var/log/nginx/www.helpresear.ch-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.helpresear.ch/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.helpresear.ch/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.helpresear.ch) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.helpresear.ch; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.ig.cfonn.ca: server { server_name www.ig.cfonn.ca; # Log files for Debugging access_log /var/log/nginx/www.ig.cfonn.ca-access.log; error_log /var/log/nginx/www.ig.cfonn.ca-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.ig.cfonn.ca/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.ig.cfonn.ca/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.ig.cfonn.ca) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.ig.cfonn.ca; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.insta.id: server { server_name www.insta.id; # Log files for Debugging access_log /var/log/nginx/www.insta.id-access.log; error_log /var/log/nginx/www.insta.id-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.insta.id/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.insta.id/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.insta.id) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.insta.id; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.katje.link: server { server_name www.katje.link; # Log files for Debugging access_log /var/log/nginx/www.katje.link-access.log; error_log /var/log/nginx/www.katje.link-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.katje.link/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.katje.link/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.katje.link) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.katje.link; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.knowme.one: server { server_name www.knowme.one; # Log files for Debugging access_log /var/log/nginx/www.knowme.one-access.log; error_log /var/log/nginx/www.knowme.one-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.knowme.one/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.knowme.one/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.knowme.one) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.knowme.one; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.linkcanoe.digital: server { server_name www.linkcanoe.digital; # Log files for Debugging access_log /var/log/nginx/www.linkcanoe.digital-access.log; error_log /var/log/nginx/www.linkcanoe.digital-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.linkcanoe.digital/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.linkcanoe.digital/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.linkcanoe.digital) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.linkcanoe.digital; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.moresal.es: server { server_name www.moresal.es; # Log files for Debugging access_log /var/log/nginx/www.moresal.es-access.log; error_log /var/log/nginx/www.moresal.es-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.moresal.es/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.moresal.es/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.moresal.es) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.moresal.es; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.moresales.tips: server { server_name www.moresales.tips; # Log files for Debugging access_log /var/log/nginx/www.moresales.tips-access.log; error_log /var/log/nginx/www.moresales.tips-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.moresales.tips/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.moresales.tips/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.moresales.tips) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.moresales.tips; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.namesriver.com: server { server_name www.namesriver.com; # Log files for Debugging access_log /var/log/nginx/www.namesriver.com-access.log; error_log /var/log/nginx/www.namesriver.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.namesriver.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.namesriver.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.namesriver.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.namesriver.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.notionjoy.io: server { server_name www.notionjoy.io; # Log files for Debugging access_log /var/log/nginx/www.notionjoy.io-access.log; error_log /var/log/nginx/www.notionjoy.io-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.notionjoy.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.notionjoy.io/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.notionjoy.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.notionjoy.io; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.pebbleswhite.com: server { listen 80; server_name www.pebbleswhite.com; # Log files for Debugging access_log /var/log/nginx/www.pebbleswhite.com-access.log; error_log /var/log/nginx/www.pebbleswhite.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } } # configuration file /etc/nginx/sites-enabled/www.santannahope.com: server { server_name www.santannahope.com; # Log files for Debugging access_log /var/log/nginx/www.santannahope.com-access.log; error_log /var/log/nginx/www.santannahope.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.santannahope.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.santannahope.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.santannahope.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.santannahope.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.siigue.me: server { server_name www.siigue.me; # Log files for Debugging access_log /var/log/nginx/www.siigue.me-access.log; error_log /var/log/nginx/www.siigue.me-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.siigue.me/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.siigue.me/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.siigue.me) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.siigue.me; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.skinfitnessgear.com: server { server_name www.skinfitnessgear.com; # Log files for Debugging access_log /var/log/nginx/www.skinfitnessgear.com-access.log; error_log /var/log/nginx/www.skinfitnessgear.com-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.skinfitnessgear.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.skinfitnessgear.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.skinfitnessgear.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.skinfitnessgear.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.socials.cfonn.ca: server { server_name www.socials.cfonn.ca; # Log files for Debugging access_log /var/log/nginx/www.socials.cfonn.ca-access.log; error_log /var/log/nginx/www.socials.cfonn.ca-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.socials.cfonn.ca/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.socials.cfonn.ca/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.socials.cfonn.ca) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.socials.cfonn.ca; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.soultreestore.com: server { server_name www.soultreestore.com; # Log files for Debugging access_log /var/log/nginx/www.soultreestore.com-access.log; error_log /var/log/nginx/www.soultreestore.com-error.log; return 301 https://soultreestore.com$request_uri; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.soultreestore.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.soultreestore.com/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.soultreestore.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.soultreestore.com; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/www.waltr.cc: server { server_name www.waltr.cc; # Log files for Debugging access_log /var/log/nginx/www.waltr.cc-access.log; error_log /var/log/nginx/www.waltr.cc-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/www.waltr.cc/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/www.waltr.cc/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = www.waltr.cc) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name www.waltr.cc; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/yesdd.co: server { server_name yesdd.co; # Log files for Debugging access_log /var/log/nginx/yesdd.co-access.log; error_log /var/log/nginx/yesdd.co-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/yesdd.co/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/yesdd.co/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = yesdd.co) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name yesdd.co; return 404; # managed by Certbot } # configuration file /etc/nginx/sites-enabled/yiz.io: server { server_name yiz.io; # Log files for Debugging access_log /var/log/nginx/yiz.io-access.log; error_log /var/log/nginx/yiz.io-error.log; # Webroot Directory for Laravel project root /var/www/linkjoy/public; index index.php index.html index.htm; location / { try_files $uri $uri/ /index.php?$query_string; } # PHP-FPM Configuration Nginx location ~ \.php$ { try_files $uri =404; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php/php7.4-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/yiz.io/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/yiz.io/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot }server { if ($host = yiz.io) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name yiz.io; return 404; # managed by Certbot }