Skip to content

Commit fa416c9

Browse files
authored
Add files via upload
1 parent e92f4d6 commit fa416c9

File tree

6 files changed

+2207
-0
lines changed

6 files changed

+2207
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Include "conf/extra/vhosts/*.conf"
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Add host in: C:\Windows\System32\drivers\etc
2+
# 127.0.0.10 atomjoy.test www.atomjoy.test
3+
4+
<VirtualHost 127.0.0.10:80>
5+
DocumentRoot "D:/www/atomjoy.test/public_html"
6+
DirectoryIndex index.php
7+
ServerName atomjoy.test
8+
ServerAlias www.atomjoy.test
9+
10+
#ErrorLog "D:/www/atomjoy.test/storage/logs/atomjoy.test.error.log"
11+
#CustomLog "D:/www/atomjoy.test/storage/logs/atomjoy.test.access.log" common
12+
13+
# Redirect ssl
14+
#RewriteEngine On
15+
#RewriteCond %{HTTPS} off
16+
#RewriteRule (.*) https://%{SERVER_NAME}$1 [R,L]
17+
18+
<Directory "D:/www/atomjoy.test/public_html">
19+
#Options -Indexes -MultiViews +SymLinksIfOwnerMatch
20+
Options -Indexes -MultiViews +FollowSymLinks
21+
AllowOverride all
22+
Order Deny,Allow
23+
Allow from all
24+
Require all granted
25+
</Directory>
26+
27+
<Files .env>
28+
Order allow,deny
29+
Deny from all
30+
</Files>
31+
32+
<FilesMatch "^\.">
33+
Order allow,deny
34+
Deny from all
35+
</FilesMatch>
36+
37+
<FilesMatch ".(jpg|jpeg|png|gif|ico|webp)$">
38+
Header set Cache-Control "max-age=86400, public"
39+
</FilesMatch>
40+
</VirtualHost>
41+
42+
<VirtualHost 127.0.0.10:443>
43+
DocumentRoot "D:/www/atomjoy.test/public_html"
44+
ServerName atomjoy.test
45+
ServerAlias www.atomjoy.test
46+
47+
SSLEngine on
48+
SSLCertificateFile "conf/ssl.crt/server.crt"
49+
SSLCertificateKeyFile "conf/ssl.key/server.key"
50+
51+
<Directory "D:/www/atomjoy.test/public_html">
52+
#Options -Indexes -MultiViews +SymLinksIfOwnerMatch
53+
Options -Indexes -MultiViews +FollowSymLinks
54+
AllowOverride all
55+
Order Deny,Allow
56+
Allow from all
57+
Require all granted
58+
</Directory>
59+
60+
<Files .env>
61+
Order allow,deny
62+
Deny from all
63+
</Files>
64+
65+
<FilesMatch "^\.">
66+
Order allow,deny
67+
Deny from all
68+
</FilesMatch>
69+
70+
<FilesMatch ".(jpg|jpeg|png|gif|ico|webp)$">
71+
Header set Cache-Control "max-age=86400, public"
72+
</FilesMatch>
73+
</VirtualHost>
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Add host in: C:\Windows\System32\drivers\etc
2+
# 127.0.0.100 dev.atomjoy.test www.dev.atomjoy.test
3+
4+
<VirtualHost 127.0.0.100:80>
5+
DocumentRoot "D:/www/dev.atomjoy.test/public"
6+
DirectoryIndex index.php
7+
ServerName dev.atomjoy.test
8+
ServerAlias www.dev.atomjoy.test
9+
10+
#ErrorLog "D:/www/dev.atomjoy.test/storage/logs/dev.atomjoy.test.error.log"
11+
#CustomLog "D:/www/dev.atomjoy.test/storage/logs/dev.atomjoy.test.access.log" common
12+
13+
# Redirect ssl
14+
#RewriteEngine On
15+
#RewriteCond %{HTTPS} off
16+
#RewriteRule (.*) https://%{SERVER_NAME}$1 [R,L]
17+
18+
<Directory "D:/www/dev.atomjoy.test/public">
19+
#Options -Indexes -MultiViews +SymLinksIfOwnerMatch
20+
Options -Indexes -MultiViews +FollowSymLinks
21+
AllowOverride all
22+
Order Deny,Allow
23+
Allow from all
24+
Require all granted
25+
</Directory>
26+
27+
<Files .env>
28+
Order allow,deny
29+
Deny from all
30+
</Files>
31+
32+
<FilesMatch "^\.">
33+
Order allow,deny
34+
Deny from all
35+
</FilesMatch>
36+
37+
<FilesMatch ".(jpg|jpeg|png|gif|ico|webp)$">
38+
Header set Cache-Control "max-age=86400, public"
39+
</FilesMatch>
40+
</VirtualHost>
41+
42+
<VirtualHost 127.0.0.100:443>
43+
DocumentRoot "D:/www/dev.atomjoy.test/public"
44+
ServerName dev.atomjoy.test
45+
ServerAlias www.dev.atomjoy.test
46+
47+
SSLEngine on
48+
SSLCertificateFile "conf/ssl.crt/server.crt"
49+
SSLCertificateKeyFile "conf/ssl.key/server.key"
50+
51+
<Directory "D:/www/dev.atomjoy.test/public">
52+
#Options -Indexes -MultiViews +SymLinksIfOwnerMatch
53+
Options -Indexes -MultiViews +FollowSymLinks
54+
AllowOverride all
55+
Order Deny,Allow
56+
Allow from all
57+
Require all granted
58+
</Directory>
59+
60+
<Files .env>
61+
Order allow,deny
62+
Deny from all
63+
</Files>
64+
65+
<FilesMatch "^\.">
66+
Order allow,deny
67+
Deny from all
68+
</FilesMatch>
69+
70+
<FilesMatch ".(jpg|jpeg|png|gif|ico|webp)$">
71+
Header set Cache-Control "max-age=86400, public"
72+
</FilesMatch>
73+
</VirtualHost>
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<VirtualHost *:80>
2+
ServerAdmin admin@localhost
3+
DocumentRoot "D:/www/localhost"
4+
ServerName localhost
5+
ServerAlias www.localhost
6+
<Directory "D:/www/localhost">
7+
Options Indexes FollowSymLinks MultiViews
8+
AllowOverride all
9+
Order Deny,Allow
10+
Allow from all
11+
Require all granted
12+
</Directory>
13+
</VirtualHost>
14+
15+
<VirtualHost *:443>
16+
ServerAdmin admin@localhost
17+
DocumentRoot "D:/www/localhost"
18+
ServerName localhost
19+
ServerAlias www.localhost
20+
21+
SSLEngine on
22+
SSLCertificateFile "conf/ssl.crt/server.crt"
23+
SSLCertificateKeyFile "conf/ssl.key/server.key"
24+
25+
<Directory "D:/www/localhost">
26+
Options Indexes FollowSymLinks MultiViews
27+
AllowOverride all
28+
Order Deny,Allow
29+
Allow from all
30+
Require all granted
31+
</Directory>
32+
</VirtualHost>

.vscode/xampp/apache/robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
Disallow:
3+
Sitemap: https://atomjoy.test/sitemap.xml

0 commit comments

Comments
 (0)