Commit 267112d1ed0da8a95f2db35269ae971a09550c6c
Exists in
sei-v3.0.0-oracle-dockerimages
and in
2 other branches
Merge branch 'sei-v3.0.0' of http://softwarepublico.gov.br/gitlab/mp/sei-vagrant into sei-v3.0.0
Showing
5 changed files
with
6 additions
and
4 deletions
Show diff stats
Vagrantfile_Distrib
@@ -23,7 +23,7 @@ Vagrant.configure(2) do |config| | @@ -23,7 +23,7 @@ Vagrant.configure(2) do |config| | ||
23 | # Necessário permissões de root para utilizar a porta 80 (> 1024) | 23 | # Necessário permissões de root para utilizar a porta 80 (> 1024) |
24 | config.vm.network :forwarded_port, guest: 80, host: 80 # SIP e SEI (Apache) | 24 | config.vm.network :forwarded_port, guest: 80, host: 80 # SIP e SEI (Apache) |
25 | config.vm.network :forwarded_port, guest: 3306, host: 3306 # Banco de Dados (Mysql) | 25 | config.vm.network :forwarded_port, guest: 3306, host: 3306 # Banco de Dados (Mysql) |
26 | - config.vm.network :forwarded_port, guest: 8080, host: 8080 # Jod Converter (Tomcat) | 26 | + #config.vm.network :forwarded_port, guest: 8080, host: 8080 # Jod Converter (Tomcat) |
27 | config.vm.network :forwarded_port, guest: 8983, host: 8983 # Solr Indexer (Jetty) | 27 | config.vm.network :forwarded_port, guest: 8983, host: 8983 # Solr Indexer (Jetty) |
28 | config.vm.network :forwarded_port, guest: 1080, host: 1080 # MailCatcher | 28 | config.vm.network :forwarded_port, guest: 1080, host: 1080 # MailCatcher |
29 | 29 |
mysql/Dockerfile
@@ -20,5 +20,5 @@ COPY sei-db-ref-executivo/mysql/sei_3_0_0_BD_Ref_Exec.sql /tmp/2-sei_mysql.sql | @@ -20,5 +20,5 @@ COPY sei-db-ref-executivo/mysql/sei_3_0_0_BD_Ref_Exec.sql /tmp/2-sei_mysql.sql | ||
20 | COPY sei-db-ref-executivo/mysql/sip_3_0_0_BD_Ref_Exec.sql /tmp/3-sip_mysql.sql | 20 | COPY sei-db-ref-executivo/mysql/sip_3_0_0_BD_Ref_Exec.sql /tmp/3-sip_mysql.sql |
21 | COPY 4-posinstall.sql /tmp/4-posinstall.sql | 21 | COPY 4-posinstall.sql /tmp/4-posinstall.sql |
22 | 22 | ||
23 | -RUN bash /install.sh | 23 | +#RUN bash /install.sh |
24 | 24 |
@@ -0,0 +1 @@ | @@ -0,0 +1 @@ | ||
1 | +Subproject commit 3949e4b5abbc4060ffb9d78441289e4f43eaeac9 |
sei/install.sh
@@ -6,6 +6,7 @@ yum install -y epel-release && yum -y update | @@ -6,6 +6,7 @@ yum install -y epel-release && yum -y update | ||
6 | 6 | ||
7 | yum -y install httpd24u mysql56u memcached openssl wget curl unzip gcc java-1.7.0-openjdk libxml2 crontabs | 7 | yum -y install httpd24u mysql56u memcached openssl wget curl unzip gcc java-1.7.0-openjdk libxml2 crontabs |
8 | 8 | ||
9 | +# Instalação do PHP e demais extenções necessárias para o projeto | ||
9 | wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm | 10 | wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm |
10 | wget https://centos6.iuscommunity.org/ius-release.rpm | 11 | wget https://centos6.iuscommunity.org/ius-release.rpm |
11 | rpm -Uvh ius-release*.rpm | 12 | rpm -Uvh ius-release*.rpm |
sei/sei.conf
@@ -25,13 +25,13 @@ Alias "/infra_js" "/opt/infra/infra_js" | @@ -25,13 +25,13 @@ Alias "/infra_js" "/opt/infra/infra_js" | ||
25 | # Bloqueia acesso à qualquer arquivo ou diretório externo ao DocumentRoot | 25 | # Bloqueia acesso à qualquer arquivo ou diretório externo ao DocumentRoot |
26 | <Directory /> | 26 | <Directory /> |
27 | AllowOverride None | 27 | AllowOverride None |
28 | - #Require all denied | 28 | + # Require all denied |
29 | </Directory> | 29 | </Directory> |
30 | 30 | ||
31 | <Directory ~ "(/opt/sei/web|/opt/sip/web|/opt/infra/infra_css|/opt/infra/infra_js)" > | 31 | <Directory ~ "(/opt/sei/web|/opt/sip/web|/opt/infra/infra_css|/opt/infra/infra_js)" > |
32 | AllowOverride None | 32 | AllowOverride None |
33 | Options None | 33 | Options None |
34 | - #Require all granted | 34 | + # Require all granted |
35 | </Directory> | 35 | </Directory> |
36 | 36 | ||
37 | </VirtualHost> | 37 | </VirtualHost> |