#virtualhost
Explore tagged Tumblr posts
techdirectarchive · 8 months ago
Text
Fix the Port used for the Virtualhost is not an Apache Listen Port
In this short blogpost, we shall discuss how to Fix the Port used for the Virtualhost is not an Apache Listen Port. In Apache, the Listen directive in the configuration file (httpd.conf or apache2.conf, depending on the system) specifies the port number on which Apache will listen for incoming connections. Please see Setup VirtualHost with SSL on WAMP Server, how to Configure SQL Server Instance…
0 notes
meelapindia · 2 years ago
Text
0 notes
thesysadm · 2 years ago
Video
youtube
Master Web Hosting: Step-by-step Apache Installation & Configuration wit...
0 notes
yaasita · 6 months ago
Text
0 notes
katyslemon · 3 years ago
Text
How to Deploy Laravel Application on AWS EC2?
Introduction
Are you struggling to find an easy tutorial on how to deploy Laravel application on AWS EC2? Then here is a blog for you to lessen your hustle! Follow this step-by-step guide to deploy your application on Amazon EC2.
Tutorial Takeaway
You’d be learning about the following topics for this tutorial.
Working with Nginx
MySQL: Installation and Configuration
Laravel: Basic Set-Up and Project Creation
Deploy Laravel Application on AWS EC2
Prerequisite
Make sure you have the following resources to use.
RDS
VPC
EC2 Instance: Visit create EC2 instance if have not yet created.
Technical Stack: Deploy Laravel Application on AWS EC2
To host our Laravel app on Amazon EC2 we will be using the following technical stack.
Ubuntu
Nginx
PHP7.2-FPM
Login to EC2 Instance
Use the following command for logging in to your EC2 instance.
Tumblr media
Read more to Install Nginx
0 notes
mccodylim · 3 years ago
Photo
Tumblr media
190121: ABBOTT “GEMPAK” Kick-Off 2022 for PG & Merchandiser!! Got a really “Gempak” entrance during the opening & I really like it!! I’m God of thunder, King of Asgard.. I am THOR-aemon!! *kaching* Ready to Gempak like a rockstar!! . #codylim #mccodylim #virtualhost #emceesofmalaysia #abbott #abbottmalaysia #abbottani #kickoff2022 #gempak #thoraemon #ecopiaevents (at Ecopia Group) https://www.instagram.com/p/CZHe_YjJ-jP/?utm_medium=tumblr
0 notes
motivatorssa · 4 years ago
Video
youtube
Nastassia Arendse is a host on Business Day TV where she and a panel of experts discuss the action on the Johannesburg Stock Exchange, debate the best and worst performing stocks and pick their favourites. Every Monday night you can catch her on “Smart Money”, a personal finance show that helps viewers navigate the world of money and investing. She is also the anchor of a weekly book feature at the SABC where she sits down with local and international authors.
Having debuted on radio as a traffic reporter for YFM (99.2 FM), Nastassia has been in broadcasting for 9 years, and has worked in both television and radio. As a television anchor, she presented Closing Bell East Africa and Open Exchange on international business channel CNBC Africa. She has also hosted business shows on SAfm and Classic FM.
As an experienced reporter, she covered global commodity markets for Moneyweb where she wrote features that track changes and trends worldwide in the commodity space. The beat focused on how prospects for the global economy, interest rates and currencies influence investor decisions in relation to gold, precious metals, fixed income and equities.
0 notes
borisgaona · 4 years ago
Photo
Tumblr media
Cuando me invitan a moderar un evento virtual y me dicen que el #dresscode es #Formal. . . . #zoom #virtualstyling #virtual #virtualevents #virtualmeeting #Panama #pty #pty507 #eventos #eventovirtual #reunionvirtual #codigodevestimenta #mister #virtualhost #anfitrionvirtual #host #anfitrion (en Panama, Panama) https://www.instagram.com/p/CKnFUmCFTU7/?igshid=j366k4qknb0g
0 notes
allaboutcolleen · 5 years ago
Photo
Tumblr media
Done with Christmas Party Hosting "Online". Thank You RB and Mead & Johnson for having me ❤️ Eto itsura ko. Bilang upper lang naman ang kita, e di awra lang tayo sa pantaas pero pambahay sa pambaba 🙈😂 Hosting #OOTD from home be like🤣 #ColleenMateo #HostForAllSeasons #OnlineHost #VirtualHost #WeareRB #TuloyangPasko https://www.instagram.com/p/CIxh1kzl5EM/?igshid=1bjcdo0vgir7h
0 notes
techdirectarchive · 8 months ago
Text
How to Install OpenSSL on Windows Computers
In this article, we shall discuss how to Install OpenSSL on Windows Computers. OpenSSL is an open-source command-line tool that is used to generate the SSL certificate and private key and is available in both versions 32 and 64 bit. Please see How to fix Windows Update Fails with Error 0x80092004, how to Fix the Port used for the Virtualhost is not an Apache Listen Port, and Shell Scripting: How…
1 note · View note
sololinuxes · 6 years ago
Text
Instalar LAMP en Arch Linux y derivados
Tumblr media
Instalar LAMP en Arch Linux y derivados. El paquete LAMP (Linux, Apache, MySQL/MariaDB, PHP) es el más común a la hora de montar un servidor web. En este articulo veremos cómo instalar LAMP en un servidor Arch Linux. No debes preocuparte por las versiones que se instalaran, como Arch es una distribución Linux de lanzamiento constante, siempre instalara las ultimas versiones de PHP, Apache, y MariaDB. Comenzamos...  
Instalar LAMP en Arch Linux y derivados
Lo primero que debemos hacer es actualizar Arch Linux. sudo pacman -Syu Instalar Apache Una vez tengamos nuestro servidor actualizado, instalamos Apache. sudo pacman -Syu apache Ahora editamos los recursos en el archivo de configuración de Apache, "httpd-default.conf". Te recomiendo que primero hagas una copia de seguridad con el siguiente comando. cp /etc/httpd/conf/extra/httpd-mpm.conf ~/httpd-mpm.conf.backup Abrimos el archivo con nuestro editor preferido, en nuestro caso utilizamos nano. nano /etc/httpd/conf/extra/httpd-mpm.conf Modifica los valores según tus necesidades. Si tienes un VPS, un buen ejemplo es...                 StartServers 4                 MinSpareServers 20                 MaxSpareServers 40                 MaxRequestWorkers 200                 MaxConnectionsPerChild 4500 Guarda el archivo, y cierra el editor. Te recomiendo que des-habilites KeepAlive, pero es tu decisión. nano /etc/httpd/conf/extra/httpd-default.conf ejemplo... KeepAlive Off Solo nos falta habilitar el inicio automático de Apache con el sistema. sudo systemctl enable httpd.service   Configurar el Virtual Host Abrimos el archivo de configuración. nano /etc/httpd/conf/httpd.conf Debemos definir la raíz predeterminada. Busca la linea... DocumentRoot "/srv/http" y la editas como... DocumentRoot "/srv/http/default" En el mismo archivo buscamos otra linea más. #Include conf/extra/httpd-vhosts.conf la descomentas. Include conf/extra/httpd-vhosts.conf Guarda el archivo y cierra el editor. Configuramos un host virtual (con tus datos reales). nano /etc/httpd/conf/extra/httpd-vhosts.conf ejemplo de configuración...           ServerAdmin [email protected]           ServerName ejemplo.com           ServerAlias www.ejemplo.com           DocumentRoot /srv/http/ejemplo.com/public_html/           ErrorLog /srv/http/ejemplo.com/logs/error.log           CustomLog /srv/http/ejemplo.com/logs/access.log combined                                                               Order deny,allow                                   Allow from all                             Guarda el archivo y cierra el editor. Creamos los directorios (carpetas) a los que hace referencia el Virtualhost (no te olvides de insertar tu dominio real). sudo mkdir -p /srv/http/default sudo mkdir -p /srv/http/ejemplo.com/public_html sudo mkdir -p /srv/http/ejemplo.com/logs Iniciamos el servicio Apache. sudo systemctl start httpd.service   Instalar MariaDB en Arch Linux Por defecto, Arch Linux instala el motor de base de datos MariaDB. sudo pacman -Syu mariadb mariadb-clients libmariadbclient sudo mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql Arrancamos MariaDB, y habilitamos su inicio con el sistema. sudo systemctl start mysqld.service sudo systemctl enable mysqld.service No te olvides de asegurar la instalación de MariaDB. mysql_secure_installation Enter current password for root (enter for none): Pulsa enter Set root password? : Y New password: Enter password Re-enter new password: Repeat password Remove anonymous users? : Y Disallow root login remotely? : Y Remove test database and access to it? :  Y Reload privilege tables now? :  Y La instalación de MariaDB a concluido, ya podemos crear nuestra primera base de datos. Accedemos a la consola MySQL. La password es la del usuario root. mysql -u root -p Creamos la base de datos "MiWeb". CREATE DATABASE MiWeb; El usuario y la password. GRANT ALL ON webdata.* TO 'tu-usuario' IDENTIFIED BY 'tu-password'; Para salir de la consola escribe lo siguiente. quit   Instalar PHP en Arch Linux Para finalizar la instalación de LAMP en Arch, nos falta instalar PHP. sudo pacman -Syu php php-apache Una vez concluya la instalación de PHP, editamos el archivo php.ini. nano /etc/php/php.ini El php.ini debe ser personalizado, pues depende de tu sitio web. Un buen comienzo es configurar el archivo para que obtenga los mensajes de error y registros, ademas de mejorar el rendimiento del servidor. nano /etc/php/php.ini Vemos un ejemplo de lineas a modificar en un VPS. -error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR -log_errors = On -error_log = /var/log/php/error.log -max_input_time = 30 -extension=mysql.so Creamos la carpeta donde se guardaran los registros, y concedemos permisos al usuario de Apache. sudo mkdir /var/log/php sudo chown http /var/log/php Habilitamos el modulo PHP en Apache, insertando las siguientes lineas en su sección correspondiente. nano /etc/httpd/conf/httpd.conf # Dynamic Shared Object (DSO) Support LoadModule php7_module modules/libphp7.so AddHandler php7-script php # Supplemental configuration # PHP 7 Include conf/extra/php7_module.conf # Located in the AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps Sin salir del archivo, busca la linea que te indico a continuación y la comentas. LoadModule mpm_event_module modules/mod_mpm_event.so Justo después de la anterior, copia y pega la que te indico a continuación. LoadModule mpm_prefork_module modules/mod_mpm_prefork.so ejemplo... #LoadModule mpm_event_module modules/mod_mpm_event.so LoadModule mpm_prefork_module modules/mod_mpm_prefork.so Guarda el archivo y cierra el editor. Para finalizar reiniciamos Apache y el sistema. sudo systemctl restart httpd.service sudo systemctl reboot   Espero que este articulo te sea de utilidad, puedes ayudarnos a mantener el servidor con una donación (paypal), o también colaborar con el simple gesto de compartir nuestros artículos en tu sitio web, blog, foro o redes sociales.   Read the full article
0 notes
gslin · 6 years ago
Text
Amazon S3 要拿掉 Path-style 存取方式
Amazon S3 要拿掉 Path-style 存取方式
在 Hacker News 上翻的時候翻到的公告:「Announcement: Amazon S3 will no longer support path-style API requests starting September 30th, 2020」。
現有的兩種方法,一種是把 bucket name 放在 path (V1),另外一種是把 bucket name 放在 hostname (V2):
Amazon S3 currently supports two request URI styles in all regions: path-style (also known as V1) that includes bucket name in the path of the URI (example: //s3.amazonaws.com//key), and…
View On WordPress
0 notes
linuxteck-blog · 2 years ago
Link
0 notes
mccodylim · 4 years ago
Photo
Tumblr media
031221: ABBOTT Virtual Annual Dinner & Awards 2021! Since we can’t bring you to your dream destinations at this moment; We decided to bring the world to you! Anything is indeed possible in the virtual world! . #codylim #mccodylim #virtualhost #emceesofmalaysia #pilotsuit #pilotcostume #goodtobeback #abbott #abbottmalaysia #ateventquest #greenrobotstudio (at GreenRobot Studio) https://www.instagram.com/p/CXJY3bpJmtI/?utm_medium=tumblr
0 notes
markg20 · 4 years ago
Video
tumblr
Our packages are designed to offer high levels of security and performance, not to mention they scale easily to meet your needs.
 For more information, visit: https://webline-services.com/virtual-dedicated-hosting/openvz-virtual-dedicated-hosting/
0 notes
humanengineers · 4 years ago
Photo
Tumblr media
Hosting Webinars During Covid: Planning, and Management
0 notes