This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# One Click LAMP Server Installer (Ubuntu/Debian) - Roskus | |
# @author Gustavo Novaro | |
# @version 3.3.1 | |
# @url https://gist.github.com/gnovaro/5295150774be1794028c15c83313c16e | |
# Run: sudo ./lamp_setup.sh | |
############################################### | |
#Servidor Web http | |
apt-get install -y nginx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Instructions | |
# 1. Replace laravel-app-folder with your laravel app folder name | |
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
client_max_body_size 200M; |
OlderNewer